mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-01 07:35:17 +00:00
41 lines
606 B
SCSS
41 lines
606 B
SCSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
|
|
&-general {
|
|
>p {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: left;
|
|
gap: 5px;
|
|
align-items: flex-start;
|
|
margin: 0;
|
|
|
|
>label {
|
|
cursor: pointer
|
|
}
|
|
}
|
|
}
|
|
|
|
&-cards,
|
|
&-trombi {
|
|
>p {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
text-align: justify;
|
|
gap: 5px;
|
|
|
|
>input,
|
|
>select {
|
|
min-width: 300px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-submit-btn {
|
|
margin-top: 10px !important;
|
|
max-width: 100px;
|
|
}
|
|
} |