Skip to content

Commit 68d8b2e

Browse files
author
David Kim
authored
fix: dashboard grid (#3028)
* fix: dashboard grid * fix: row gap between labels
1 parent 923db5d commit 68d8b2e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/dashboards/components/DashboardsCardGrid.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $dashboard-grid-gap: $cf-marg-a;
2121
padding-bottom: $cf-marg-d;
2222
display: grid;
2323
grid-template-columns: minmax(100%, 1fr);
24-
grid-auto-rows: $cf-space-3xl + $cf-space-3xl + $cf-space-m;
24+
grid-auto-rows: min-content;
2525
grid-column-gap: $dashboard-grid-gap;
2626
grid-row-gap: $dashboard-grid-gap;
2727
height: 100%;

src/shared/components/inlineLabels/InlineLabels.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ $inline-labels--margin: $ix-border / 2;
1717
flex-wrap: wrap;
1818
padding: $inline-labels--margin;
1919
column-gap: $cf-space-3xs;
20+
row-gap: $cf-space-3xs;
2021

2122
> .cf-label {
2223
margin: $inline-labels--margin;

src/shared/components/inlineLabels/InlineLabelsEditor.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
display: flex;
1010
align-items: center;
1111
column-gap: $cf-space-3xs;
12+
row-gap: $cf-space-3xs;
1213
}
1314

1415
.inline-labels--add-wrapper {

0 commit comments

Comments
 (0)