mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 00:36:38 -04:00
Give toolbar items a bottom margin to separate the rows when they wrap
This commit is contained in:
parent
61c4ef40de
commit
d10383ea9d
1 changed files with 11 additions and 7 deletions
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue