0

fix(ui): reduce empty vertical space between action buttons and content header

This commit is contained in:
Gabe Kangas 2023-04-30 13:34:30 -07:00
parent 55877c0f5d
commit ea902520ff
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
.row {
padding: 0.75rem;
padding-bottom: 0px;
display: flex;
flex-wrap: wrap;
align-items: center;

View File

@ -8,6 +8,7 @@ $vert-spacing: 0.75rem;
padding: var(--content-padding);
padding-left: var(--content-padding);
padding-right: var(--content-padding);
padding-top: calc(var(--content-padding) * 0.5);
}
.row {