[#75] added option to test s3 connection and send test emails

This commit is contained in:
Gani Georgiev
2022-08-21 14:30:36 +03:00
parent 3f4f4cf031
commit 587cfc335c
49 changed files with 1539 additions and 838 deletions

View File

@@ -25,7 +25,6 @@
}
}
@keyframes fadeIn {
0% {
opacity: 0;
@@ -51,3 +50,47 @@
transform: scale(1);
}
}
@keyframes entranceLeft {
0% {
opacity: 0;
transform: translateX(-5px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes entranceRight {
0% {
opacity: 0;
transform: translateX(5px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes entranceTop {
0% {
opacity: 0;
transform: translateY(-5px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes entranceBottom {
0% {
opacity: 0;
transform: translateY(5px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}