refactor: improve error states in spreadsheet flow

This commit is contained in:
Carlos Valente
2024-06-08 21:40:16 +02:00
committed by Carlos Valente
parent 9a9a0eb7cf
commit b99cf5f255
4 changed files with 37 additions and 12 deletions
@@ -1,5 +1,5 @@
.uploadSection,
.successSection {
.finishSection {
margin-top: 1rem;
display: flex;
padding: 3rem 1rem;
@@ -15,12 +15,18 @@
gap: 2rem;
}
.successSection {
color: $green-500;
.finishSection {
font-size: 1.5rem;
text-align: center;
flex-direction: column;
gap: 1rem;
.error {
color: $red-500;
}
.success {
color: $green-500;
}
}
.buttonRow {