1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix Cluster Settings style specificity

Signed-off-by: alexfront <alex.andreev.email@gmail.com>
This commit is contained in:
alexfront 2020-08-11 10:26:19 +03:00
parent b8bde06869
commit 70ae3f7012
2 changed files with 85 additions and 81 deletions

View File

@ -1,4 +1,5 @@
.ClusterSettings { .ClusterSettings {
.WizardLayout {
grid-template-columns: unset; grid-template-columns: unset;
padding: 0; padding: 0;
@ -93,3 +94,4 @@
} }
} }
} }
}

View File

@ -30,7 +30,8 @@ export class ClusterSettings extends React.Component {
</> </>
); );
return ( return (
<WizardLayout header={header} className="ClusterSettings"> <div className="ClusterSettings">
<WizardLayout header={header}>
<div className="settings-wrapper"> <div className="settings-wrapper">
<Status cluster={cluster}></Status> <Status cluster={cluster}></Status>
<General cluster={cluster}></General> <General cluster={cluster}></General>
@ -38,6 +39,7 @@ export class ClusterSettings extends React.Component {
<Removal cluster={cluster}></Removal> <Removal cluster={cluster}></Removal>
</div> </div>
</WizardLayout> </WizardLayout>
</div>
); );
} }
} }