Unverified Commit c4aeaf5b authored by Sebastian Malton's avatar Sebastian Malton Committed by GitHub
Browse files

Fix styling on cluster roles and bindings (#3434)

Signed-off-by: default avatarSebastian Malton <sebastian@malton.name>
parent c590bccf
Showing with 10 additions and 10 deletions
+10 -10
......@@ -19,5 +19,5 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.RoleBindingDetails {
}
\ No newline at end of file
.ClusterRoleBindingDetails {
}
......@@ -81,7 +81,7 @@ export class ClusterRoleBindingDetails extends React.Component<Props> {
const subjects = clusterRoleBinding.getSubjects();
return (
<div className="RoleBindingDetails">
<div className="ClusterRoleBindingDetails">
<KubeObjectMeta object={clusterRoleBinding} />
<DrawerTitle title="Reference" />
......
......@@ -19,8 +19,8 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.AddRoleDialog {
.AddClusterRoleDialog {
.AceEditor {
min-height: 200px;
}
}
\ No newline at end of file
}
......@@ -76,12 +76,12 @@ export class AddClusterRoleDialog extends React.Component<Props> {
return (
<Dialog
{...dialogProps}
className="AddRoleDialog"
className="AddClusterRoleDialog"
isOpen={AddClusterRoleDialog.isOpen.get()}
close={AddClusterRoleDialog.close}
>
<Wizard
header={<h5>Create ClusterRole</h5>}
<Wizard
header={<h5>Create ClusterRole</h5>}
done={AddClusterRoleDialog.close}
>
<WizardStep
......
......@@ -19,7 +19,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.RoleDetails {
.ClusterRoleDetails {
.rule {
display: grid;
grid-template-columns: min-content auto;
......@@ -39,4 +39,4 @@
margin-bottom: $margin * 2;
}
}
}
\ No newline at end of file
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment