fleet/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/EditSoftwareModal/_styles.scss
Sarah Gillespie 3727474043
Update add software UI to move software package modal into new tabbed layout (#22553)
Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
2024-10-02 10:43:20 -05:00

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;
}
}
}