Give toolbar items a bottom margin to separate the rows when they wrap

This commit is contained in:
Henrik Giesel 2021-02-08 21:26:37 +01:00
parent 61c4ef40de
commit d10383ea9d

View file

@ -56,15 +56,19 @@ body {
background: var(--bg-color); background: var(--bg-color);
} }
.topbuts > * { .topbuts {
margin: 0 1px; margin-bottom: 2px;
&:first-child { & > * {
margin-left: 0; margin: 0 1px;
}
&:last-child { &:first-child {
margin-right: 0; margin-left: 0;
}
&:last-child {
margin-right: 0;
}
} }
} }