mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
47 lines
649 B
SCSS
47 lines
649 B
SCSS
.uploadSection,
|
|
.finishSection {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
padding: 3rem 1rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: $gray-1350;
|
|
border: 1px solid $white-10;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.uploadSection {
|
|
flex-direction: row;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.finishSection {
|
|
font-size: 1.5rem;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
|
|
.error {
|
|
color: $red-500;
|
|
}
|
|
.success {
|
|
color: $green-500;
|
|
}
|
|
}
|
|
|
|
.buttonRow {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
justify-content: end;
|
|
}
|
|
|
|
.inputContainer {
|
|
flex: 1;
|
|
}
|
|
|
|
.singleActionCell {
|
|
width: 50px;
|
|
text-align: center;
|
|
}
|