Echo 664f158994 [Glitch] Profile redesign: Remove extra underline from number fields
Port 0d20f2367ae48c5eb49b547c28afcc7e4d1349cd to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-04-01 19:13:27 +02:00

34 lines
460 B
SCSS

.list {
display: flex;
flex-wrap: wrap;
margin: 8px 0;
padding: 0;
gap: 4px 20px;
font-size: 13px;
color: var(--color-text-secondary);
}
.item {
@container (width < 420px) {
flex: 1 1 0px;
}
a,
strong {
display: block;
font-weight: 600;
color: var(--color-text-primary);
font-size: 15px;
}
a {
padding: 0;
text-decoration: none;
&:hover,
&:focus {
text-decoration: underline;
}
}
}