mirror of
https://github.com/fleetdm/fleet
synced 2026-05-11 03:00:58 +00:00
31 lines
534 B
SCSS
31 lines
534 B
SCSS
.secret-editor-modal {
|
|
&__button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: $pad-large 0 0;
|
|
}
|
|
|
|
&__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;
|
|
}
|
|
}
|