mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 22:35:46 +01:00
Initial commit for BorgWarehouse to Github
This commit is contained in:
parent
6dd26c06ab
commit
b478a91fe7
77 changed files with 13013 additions and 658 deletions
18
Components/UI/Error/Error.module.css
Normal file
18
Components/UI/Error/Error.module.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.errorMessage {
|
||||
margin: 15px 0px;
|
||||
background-color: red;
|
||||
color: white;
|
||||
padding: 15px;
|
||||
border-radius: 5px;
|
||||
animation: myAnim 1s ease 0s 1 normal forwards;
|
||||
}
|
||||
|
||||
@keyframes myAnim {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue