Port e2be688389f618684b3d6d735d22d0b4424172a6 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
47 lines
625 B
SCSS
47 lines
625 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,
|
|
button,
|
|
strong {
|
|
display: block;
|
|
font-weight: 600;
|
|
color: var(--color-text-primary);
|
|
font-size: 15px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
a {
|
|
padding: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a,
|
|
button {
|
|
&:hover,
|
|
&:focus {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
button {
|
|
appearance: none;
|
|
background: none;
|
|
border: none;
|
|
display: block;
|
|
padding: 0;
|
|
}
|
|
}
|