0

fix(ui): allow dynamic tigher spacing of action buttons. fixes #2957

This commit is contained in:
Gabe Kangas 2023-04-26 16:52:12 -07:00
parent 913cc4aae2
commit a50f1fe7bb
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -5,8 +5,8 @@
align-items: center;
justify-content: flex-end;
button {
margin-left: 0.3rem;
margin-right: 0.3rem;
margin-left: clamp(1px, 0.2vw, 0.3rem);
margin-right: clamp(1px, 0.2vw, 0.3rem);
&:last-of-type {
margin-right: 0;
}