blob: 02477eae4b5422e426e2d29808e4f5d2dbd21b18 (
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
|
@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;
}
}
}
|