Skip to content

Commit ee61273

Browse files
authored
fix(Clusters): controls and aggregations layout (#1588)
1 parent b4d2b7f commit ee61273

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/containers/Clusters/Clusters.scss

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88
@include mixins.body-2-typography();
99
@include mixins.flex-container();
10-
10+
&__autorefresh {
11+
margin-left: auto;
12+
}
1113
&__cluster {
1214
display: flex;
1315
align-items: center;
@@ -87,6 +89,7 @@
8789

8890
&__aggregation,
8991
&__controls {
92+
margin-right: 15px;
9093
margin-left: 15px;
9194
}
9295

@@ -108,7 +111,7 @@
108111
display: flex;
109112
align-items: center;
110113

111-
max-width: 200px;
114+
max-width: 230px;
112115

113116
font-size: var(--g-text-subheader-3-font-size);
114117
line-height: var(--g-text-subheader-3-line-height);

src/containers/Clusters/Clusters.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export function Clusters() {
178178
sortable={false}
179179
/>
180180
</div>
181-
<AutoRefreshControl />
181+
<AutoRefreshControl className={b('autorefresh')} />
182182
</div>
183183
{query.isError ? <ResponseError error={query.error} className={b('error')} /> : null}
184184
{query.isLoading ? <Loader size="l" /> : null}

0 commit comments

Comments
 (0)