mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
31 lines
653 B
SCSS
31 lines
653 B
SCSS
.edit-software-modal {
|
|
&__form-inputs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-large;
|
|
}
|
|
|
|
&__input-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-medium;
|
|
}
|
|
|
|
&--hidden {
|
|
display: none;
|
|
}
|
|
|
|
|
|
// formatting the form buttons to be on the right side of the modal.
|
|
// this is done here and not with .modal-cta-wrap because this form
|
|
// can be used in other places where the buttons should be on the left.
|
|
&__package-form {
|
|
.form-buttons {
|
|
align-self: flex-end;
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
margin-top: $pad-xlarge;
|
|
gap: $pad-medium;
|
|
}
|
|
}
|
|
}
|