Skip to content

Commit

Permalink
Reduce margin/padding on flex-list items and divider (#27872)
Browse files Browse the repository at this point in the history
Small CSS tweak, reduces margin/padding from 14px to 10px, which I think
looks better
  • Loading branch information
silverwind authored Nov 2, 2023
1 parent e378545 commit dc52f26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web_src/css/modules/divider.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.divider {
margin: 1rem 0;
margin: 10px 0;
height: 0;
font-weight: var(--font-weight-medium);
text-transform: uppercase;
Expand All @@ -15,7 +15,7 @@
.divider.divider-text {
display: flex;
align-items: center;
padding: 7px 0;
padding: 5px 0;
}

.divider.divider-text::before,
Expand Down
2 changes: 1 addition & 1 deletion web_src/css/shared/flex-list.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
display: flex;
gap: 8px;
align-items: flex-start;
padding: 1em 0;
padding: 10px 0;
}

.flex-item .flex-item-leading {
Expand Down

0 comments on commit dc52f26

Please sign in to comment.