commit 65850d4ce50b52735908f58a95297a6ea9bb207a parent 007bfa63faff310133bca9c08a5e1eb58b69ada4 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Mon, 21 Oct 2024 18:46:27 +0200 fix: make buttons full size in mobile mode Diffstat:
M | assets/css/custom.css | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/assets/css/custom.css b/assets/css/custom.css @@ -49,3 +49,11 @@ textarea[name=streams] { .loading_indicator.offline { color: #898ea4; } + +@media only screen and (width<=720px) { + button, .button { + width: 100%; + align-content: center; + text-align: center; + } +}