Use the bootstrap spacer variable as the basis for spacing calcuation, and match mb-1 definition

This commit is contained in:
Andy Allan 2021-02-24 10:35:28 +00:00
parent ea92d66cc0
commit 00dbe5f4a4

View file

@ -977,9 +977,13 @@ tr.turn:hover {
}
}
/* Bootstrap buttons don't have any vertical margin, so
they touch when adjacent buttons wrap onto a new line
e.g. wide form buttons on a narrow sidebar */
.btn-wrapper {
> .btn {
margin-bottom: $lineheight/4;
margin-bottom: $spacer * 0.25;
}
}