index-main/assets/css/components/_keywords.scss

34 lines
700 B
SCSS
Raw Normal View History

2026-01-06 11:19:25 +01:00
.keywords{
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 1ch;
li{
height: var(--h-block);
border-radius: calc(var(--h-block)*0.5);
border: var(--border-light);
font-size: var(--fs-normal);
overflow: hidden;
a{
text-decoration: none;
width: 100%;
height: 100%;
display: flex;
align-items: center;
padding: 0 1.5ch;
line-height: 1;
padding-top: 2px;
}
&:hover{
border-color: var(--color-txt);
a{
color: currentColor;
}
}
}
}