diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
| commit | ea0392a2bb12c158f9167105752f8fa315cff47d (patch) | |
| tree | dec4545ccbe44c8e2baf6e633308359f40ac610a /ui/styles/app-bar.css | |
| parent | 4e3ad13aca163e733724b205c250bdb67cc56c29 (diff) | |
| parent | 6d51f8568e337e768505ccfdef916b84dd6eb1b3 (diff) | |
Merge branch 'prop/stylize'
Diffstat (limited to 'ui/styles/app-bar.css')
| -rw-r--r-- | ui/styles/app-bar.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ui/styles/app-bar.css b/ui/styles/app-bar.css new file mode 100644 index 0000000..dcc447a --- /dev/null +++ b/ui/styles/app-bar.css @@ -0,0 +1,40 @@ +/* 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 .lead button { + padding: 0; + border: 0; +} + +.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); +} |
