Skip to content

Commit 8eba14a

Browse files
author
Gene Hynson
authored
fix: add more column width specs (#3354)
1 parent 0a05b0d commit 8eba14a

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/buckets/components/BucketsTab.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ class BucketsTab extends PureComponent<Props, State> {
110110
<Grid.Column
111111
widthXS={Columns.Twelve}
112112
widthSM={Columns.Eight}
113-
widthMD={Columns.Ten}
113+
widthMD={Columns.Nine}
114+
widthLG={Columns.Ten}
114115
>
115116
<FilterBuckets
116117
searchTerm={searchTerm}
@@ -140,7 +141,8 @@ class BucketsTab extends PureComponent<Props, State> {
140141
<Grid.Column
141142
widthXS={Columns.Twelve}
142143
widthSM={Columns.Four}
143-
widthMD={Columns.Two}
144+
widthMD={Columns.Three}
145+
widthLG={Columns.Two}
144146
>
145147
<BucketExplainer />
146148
</Grid.Column>

src/buckets/pagination/BucketsTab.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ class BucketsTab extends PureComponent<Props, State> {
152152
<Grid.Column
153153
widthXS={Columns.Twelve}
154154
widthSM={Columns.Eight}
155-
widthMD={Columns.Ten}
155+
widthMD={Columns.Nine}
156+
widthLG={Columns.Ten}
156157
>
157158
<FilterBuckets
158159
searchTerm={searchTerm}
@@ -190,7 +191,8 @@ class BucketsTab extends PureComponent<Props, State> {
190191
<Grid.Column
191192
widthXS={Columns.Twelve}
192193
widthSM={Columns.Four}
193-
widthMD={Columns.Two}
194+
widthMD={Columns.Three}
195+
widthLG={Columns.Two}
194196
>
195197
<BucketExplainer />
196198
</Grid.Column>

0 commit comments

Comments
 (0)