blob: d34eb87b94bff4edac4723e7e17813bf30318213 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* App Bar */
.app-bar {
height: var(--app-bar-height);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
background-color: var(--colour-header-bg);
}
.app-bar > * {
display: inline-block;
}
.app-bar .lead {
flex-basis: 60px;
}
.app-bar .trail {
flex-basis: 60px;
}
.app-bar button,
.app-bar button img {
height: var(--app-bar-height);
}
|