Update menu button styles in CSS to enforce consistent appearance with !important rules. Adjust padding, margin, and display properties for improved layout and responsiveness.

This commit is contained in:
Torsten Schulz (local)
2025-12-05 11:42:17 +01:00
parent 240316a063
commit 38f7eecfd7

View File

@@ -77,9 +77,12 @@ html, body, #app {
} }
.menu button span { .menu button span {
color: #fff; color: #fff !important;
background-color: transparent; background-color: transparent !important;
border: none; border: none !important;
padding: 0 !important;
margin: 0 !important;
display: inline !important;
} }
.horizontal-box { .horizontal-box {