index-main/assets/css/components/_keywords.scss
Julie Blanc 05e49af352
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s
style pages investigations + investigation summary
2026-01-22 16:42:01 +01:00

50 lines
No EOL
988 B
SCSS

.keywords{
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 0.75ch;
a{
display: inline-flex;
align-items: center;
justify-content: center;
height: calc(var(--h-block)*0.75);
padding: 0 1ch;
padding-top: 2px;
border: var(--border-light);
border-radius: var(--radius-btn);
font-size: var(--fs-small);
line-height: 1;
white-space: nowrap;
text-decoration: none;
&::before{
content: "#";
padding-right: 0.25ch;
}
&:hover{
border-color: currentColor;
background-color: var(--grey-800);
}
}
}
.keywords--small{
list-style: none;
li{
display: inline;
}
a{
text-decoration: none;
&::before{
content: "#";
padding-right: 0.25ch;
}
&::after{
content: "\00a0";
}
}
}