Files
sendou.ink/app/components/layout/AnythingAdder.module.css
2026-09-05 15:11:04 +03:00

23 lines
331 B
CSS

.button {
width: 100%;
}
/* in a narrow header only the plus fits, like the search button next to it */
@media screen and (min-width: 600px) {
@container (max-width: 475px) {
.button {
width: auto;
aspect-ratio: 1 / 1;
padding: 0;
& svg {
margin-inline-end: 0;
}
}
.label {
display: none;
}
}
}