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 22e098f5c9
commit 94ca6c0ffe

View file

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