Error message component and form logic done

This commit is contained in:
2021-10-22 12:15:24 -03:00
parent d1a428a3e9
commit 3d09def619
12 changed files with 279 additions and 17 deletions

View File

@@ -71,6 +71,10 @@
}
}
}
.loading {
opacity: 70%;
}
}
@media (min-width: 991.98px) {

16
public/sass/_message.scss Normal file
View File

@@ -0,0 +1,16 @@
.message-container {
padding: 4vh 5vw;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(255, 78, 78);
h2 {
color: #fff;
margin: 0;
}
}

View File

@@ -26,4 +26,5 @@ html, body {
@import 'loading';
@import 'letters-registered';
@import 'letter-input';
@import 'form';
@import 'form';
@import 'message';