Skip to content

Commit 9fa8c0b

Browse files
committed
fix: review
1 parent bf1ef65 commit 9fa8c0b

File tree

4 files changed

+4
-14
lines changed

4 files changed

+4
-14
lines changed

src/components/TableWithControlsLayout/TableWithControlsLayout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
&__controls {
2121
z-index: 3;
2222

23-
width: 100%;
23+
width: max-content;
2424
height: 62px;
2525

2626
@include mixins.controls();

src/containers/Cluster/Cluster.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
}
2222

2323
&__content {
24-
padding: 0 var(--cluster-side-padding);
24+
width: calc(100% - var(--cluster-side-padding));
25+
//allows controls of TableWithControlsLayout to stick properly
26+
transform: translateX(var(--cluster-side-padding));
2527
}
2628

2729
&__header {

src/containers/Nodes/Nodes.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,4 @@
1515
&__node_unavailable {
1616
opacity: 0.6;
1717
}
18-
19-
&__groups-wrapper {
20-
--nodes-side-padding: var(--g-spacing-5);
21-
width: calc(100% + var(--nodes-side-padding));
22-
padding-right: var(--nodes-side-padding);
23-
}
2418
}

src/containers/Storage/Storage.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,4 @@
1515
.entity-status {
1616
justify-content: center;
1717
}
18-
19-
&__groups-wrapper {
20-
--nodes-side-padding: var(--g-spacing-5);
21-
width: calc(100% + var(--nodes-side-padding));
22-
padding-right: var(--nodes-side-padding);
23-
}
2418
}

0 commit comments

Comments
 (0)