diff options
| author | Taras Madan <tarasmadan@google.com> | 2026-01-23 15:51:25 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2026-01-23 17:14:56 +0000 |
| commit | 92fb0b91db9b23a2a1d2d7822e7c8ecea3129cda (patch) | |
| tree | 89ea1761b62182412da3433e71b24b74d7543409 /pkg/html | |
| parent | bdfcde7f2628c5965e689729e57c67b4e3fd0161 (diff) | |
dashboard/app: fix menu items height
menu items with dropdown had different height
Diffstat (limited to 'pkg/html')
| -rw-r--r-- | pkg/html/pages/style.css | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkg/html/pages/style.css b/pkg/html/pages/style.css index cb1766df6..05c48a329 100644 --- a/pkg/html/pages/style.css +++ b/pkg/html/pages/style.css @@ -15,11 +15,12 @@ h1, h2, h3, h4 { font-weight: bold; } -.navigation_tab { +.navigation .navigation_tab { border: 1px solid black; padding: 4px; margin: 4px; - display: inline-block; + display: flex; + align-items: center; } .navigation_tab a:hover {background-color: #ddd;} @@ -36,7 +37,6 @@ h1, h2, h3, h4 { padding-top: 15px; padding-bottom: 6px; display: flex; - align-items: center; flex-wrap: wrap; } @@ -500,6 +500,8 @@ aside { border: none; font-family: inherit; font-size: inherit; + padding: 0; + margin: 0; } /* The container <div> - needed to position the dropdown content */ |
