Status: Fix button sizes now that icons have a width/height set

This commit is contained in:
IRHM
2026-03-19 00:39:30 +00:00
committed by momi
parent 4ee38a2625
commit 5e412f67b9
+11
View File
@@ -78,10 +78,21 @@
gap: 10px;
width: 100%;
height: 100%;
container-type: inline-size;
button {
font-size: 10px;
padding: 5px 10px;
height: 58px;
}
/* 380px is how big the this container is usually,
but when it starts to shrink we want to button height
to be unset so that buttons become responsive. */
@container (width < 380px) {
button {
height: unset;
}
}
}
</style>