Add category done

This commit is contained in:
2021-10-22 22:30:58 -03:00
parent 3e9579b8ee
commit 0b97c3b942
10 changed files with 201 additions and 11 deletions

View File

@@ -129,6 +129,13 @@
}
@import 'action-form';
@import 'message';
.loading {
position: initial;
height: 100%;
}
}
@mixin normalizeButton() {

View File

@@ -0,0 +1,24 @@
.message {
padding: 4vh 5vw;
display: flex;
justify-content: center;
align-items: center;
@include titleFont();
@include titleNormalize();
font-size: 22pt;
color: #fff;
&.error {
background-color: rgb(255, 78, 78);
}
&.sucess {
background-color: rgb(128, 255, 78);
}
}