Initial commit for BorgWarehouse to Github

This commit is contained in:
Ravinou 2022-12-01 13:25:10 +01:00 committed by GitHub
commit b478a91fe7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
77 changed files with 13013 additions and 658 deletions

View 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;
}
}