From 628337f3afcd5125299cbf620832779ab209022b Mon Sep 17 00:00:00 2001 From: Kit La Touche Date: Mon, 30 Dec 2024 15:43:01 -0500 Subject: Add in some hand-rolled styles --- ui/styles/app-bar.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ui/styles/app-bar.css (limited to 'ui/styles/app-bar.css') 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); +} -- cgit v1.2.3