fleet/frontend/components/SecretEditorModal/_styles.scss
Martavis Parker 0cb8326423
Fixed style for action buttons in all modals (#5402)
* fixed style for action buttons in all modals

* fixed tests and modified more components

* fixed class reference in test

* removed unused file
2022-04-27 13:40:28 -07:00

25 lines
432 B
SCSS

.secret-editor-modal {
&__reveal-secret {
float: right;
text-decoration: none;
}
&__secret-wrapper {
position: relative;
margin: $pad-medium 0 0 0;
}
pre,
code {
background-color: $ui-off-white;
color: $core-fleet-blue;
border: 1px solid $ui-fleet-blue-15;
border-radius: 4px;
padding: 7px $pad-medium;
margin: $pad-large 0 0 44px;
}
&__error {
color: $ui-error;
}
}