summaryrefslogtreecommitdiff
path: root/ui/styles/app-bar.css
blob: 238e2489f8a530ad7e0d3b0192261b51f37f674f (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
27
28
29
30
31
32
33
34
35
/* 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;
  line-height: var(--app-bar-height);
}

.app-bar > a {
  line-height: var(--app-bar-height);
}

.app-bar a {
  text-decoration: none;
}

.app-bar button,
.app-bar button img {
  height: var(--app-bar-height);
}