diondiondion 2ee6e447b4 [Glitch] Update collection account item design
Port 7d9b1e6d1edcadcbe8a62ede3d94860be785be13 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
2026-04-08 19:58:32 +02:00

35 lines
481 B
SCSS

.list {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
gap: 4px 24px;
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;
white-space: nowrap;
}
a {
padding: 0;
text-decoration: none;
&:hover,
&:focus {
text-decoration: underline;
}
}
}