1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-27 06:23:53 +01:00

fmlist integration, new admin panel, bugfixes

This commit is contained in:
NoobishSVK
2024-09-15 00:00:42 +02:00
parent acc0c4fb16
commit ab000412fa
22 changed files with 834 additions and 540 deletions

View File

@@ -1,4 +1,11 @@
/* Basic Toast Styling */
#toast-container {
position: fixed;
top: 20px;
right: 96px;
z-index: 9999;
}
.toast {
padding: 15px;
margin-top: 10px;
@@ -8,7 +15,7 @@
position: relative;
transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
transform: translateY(-10px); /* Initial animation state */
backdrop-filter: blur(10px);
backdrop-filter: blur(50px);
}
.toast:hover {
@@ -87,4 +94,14 @@
font-size: 16px;
color: #fff;
cursor: pointer;
}
}
@media only screen and (max-width: 768px) {
#toast-container {
left: 0;
right: 0;
}
.toast {
margin: auto;
}
}