Skip to content

Commit ccd1318

Browse files
committed
dashboard/app: fix menu items height
menu items with dropdown had different height
1 parent bdfcde7 commit ccd1318

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pkg/html/pages/style.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ h1, h2, h3, h4 {
1515
font-weight: bold;
1616
}
1717

18-
.navigation_tab {
18+
.navigation .navigation_tab {
1919
border: 1px solid black;
2020
padding: 4px;
2121
margin: 4px;
22-
display: inline-block;
22+
display: flex;
23+
align-items: center;
2324
}
2425

2526
.navigation_tab a:hover {background-color: #ddd;}
@@ -36,7 +37,6 @@ h1, h2, h3, h4 {
3637
padding-top: 15px;
3738
padding-bottom: 6px;
3839
display: flex;
39-
align-items: center;
4040
flex-wrap: wrap;
4141
}
4242

@@ -500,6 +500,8 @@ aside {
500500
border: none;
501501
font-family: inherit;
502502
font-size: inherit;
503+
padding: 0;
504+
margin: 0;
503505
}
504506

505507
/* The container <div> - needed to position the dropdown content */

0 commit comments

Comments
 (0)