mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
26 lines
497 B
SCSS
26 lines
497 B
SCSS
.enroll-secrets {
|
|
&__secret {
|
|
display: flex;
|
|
align-items: center;
|
|
// this is doubled to make an 8px space due to presence of width:0 relatively-positioned 2nd flex child
|
|
gap: 4px;
|
|
|
|
.form-field {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.form-field__label {
|
|
position: relative;
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
margin-bottom: 0;
|
|
height: 0;
|
|
min-height: 0;
|
|
}
|
|
}
|
|
|
|
&__edit-delete-btns {
|
|
display: flex;
|
|
gap: $pad-xxsmall;
|
|
}
|
|
}
|