diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-12-30 15:43:01 -0500 |
| commit | 628337f3afcd5125299cbf620832779ab209022b (patch) | |
| tree | e23a47f6ba8e75640e6dcf1bb5acaef0b491313d /ui/styles/app-bar.css | |
| parent | 1859be064a5f3ea7e6e0188526b1b125dc1c77a7 (diff) | |
Add in some hand-rolled styles
Diffstat (limited to 'ui/styles/app-bar.css')
| -rw-r--r-- | ui/styles/app-bar.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ui/styles/app-bar.css b/ui/styles/app-bar.css new file mode 100644 index 0000000..401a278 --- /dev/null +++ b/ui/styles/app-bar.css @@ -0,0 +1,25 @@ +/* App Bar */ +.app-bar { + height: var(--app-bar-height); + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: stretch; +} + +.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); +} |
