diff options
Diffstat (limited to 'src/components/Toolbar.css')
| -rw-r--r-- | src/components/Toolbar.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/Toolbar.css b/src/components/Toolbar.css new file mode 100644 index 0000000..02477ea --- /dev/null +++ b/src/components/Toolbar.css @@ -0,0 +1,24 @@ +@scope (.__Toolbar) { + :scope { + > * { + flex-grow: 1; + display: flex; + justify-content: center; + } + &:first-child, &:last-child { flex-basis: 0 } + &:first-child { justify-content: flex-start } + &:last-child { justify-content: flex-end } + + .actions { + margin: 0; + padding: 0; + list-style: none; + display: flex; + } + + .title { + font-size: 1.5rem; + width: fit-content; + } + } +}
\ No newline at end of file |
