From 5ab039d3a36ef38c34df167119b0569673c41701 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Tue, 18 May 2021 11:32:37 +0300 Subject: [PATCH] Fix css Signed-off-by: Lauri Nevala --- .../deployment-replicasets.scss | 50 ++++++++++--------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/src/renderer/components/+workloads-deployments/deployment-replicasets.scss b/src/renderer/components/+workloads-deployments/deployment-replicasets.scss index f1b770105e..0c04f54709 100644 --- a/src/renderer/components/+workloads-deployments/deployment-replicasets.scss +++ b/src/renderer/components/+workloads-deployments/deployment-replicasets.scss @@ -1,34 +1,36 @@ -.ReplicaSets { - position: relative; - min-height: 80px; +.DeploymentDetails { + .ReplicaSets { + position: relative; + min-height: 80px; - .Table { - margin: 0 (-$margin * 3); - } - - .TableCell { - &:first-child { - margin-left: $margin; + .Table { + margin: 0 (-$margin * 3); } - &:last-child { - margin-right: $margin; - } + .TableCell { + &:first-child { + margin-left: $margin; + } - &.name { - flex-grow: 2; - } + &:last-child { + margin-right: $margin; + } - &.warning { - @include table-cell-warning; - } + &.name { + flex-grow: 2; + } - &.namespace { - flex-grow: 1.2; - } + &.warning { + @include table-cell-warning; + } - &.actions { - @include table-cell-action; + &.namespace { + flex-grow: 1.2; + } + + &.actions { + @include table-cell-action; + } } } }