Migration complete

This commit is contained in:
2026-06-23 19:24:38 +02:00
parent 279160c1cb
commit 64b26ef059
126 changed files with 8121 additions and 221 deletions

View File

@@ -21,6 +21,28 @@
}
}
@media (max-width: 768px) {
.notifications, .conversations {
position: fixed;
width: calc(100% - 30px);
max-width: 340px;
right: 15px;
top: auto;
bottom: 15px;
max-height: calc(100vh - 130px);
z-index: 3000 !important;
}
}
@media (max-width: 600px) {
.notifications, .conversations {
width: calc(100% - 20px);
right: 10px;
bottom: 10px;
max-width: 100%;
}
}
@keyframes dropdown-enter {
from { opacity: 0; transform: translateY(-6px); }
to { opacity: 1; transform: translateY(0); }