Skip to content
Snippets Groups Projects
Commit f784b0ac authored by Thomas Hackl's avatar Thomas Hackl
Browse files

Resolve "Benachrichtigungen machen Probleme in responsiver Ansicht"

Closes #4661

Merge request studip/studip!3479
parent 08dcf3c2
No related branches found
No related tags found
No related merge requests found
...@@ -980,4 +980,35 @@ html:not(.responsive-display):not(.fullscreen-mode) { ...@@ -980,4 +980,35 @@ html:not(.responsive-display):not(.fullscreen-mode) {
min-width: 20vw; min-width: 20vw;
max-width: 100vw; max-width: 100vw;
} }
#system-notifications.bottom-right {
bottom: unset;
left: 0;
right: unset;
top: 0;
&:not(.system-notifications-login) {
width: 100%;
}
.system-notification {
&.system-notification-slide-enter,
&.system-notification-slide-leave-to {
opacity: 0;
transform: translateY(-100%);
}
&.system-notification-slide-leave,
&.system-notification-slide-enter-to {
opacity: 1;
transform: translateY(0);
}
&.system-notification-slide-enter-active,
&.system-notification-slide-leave-active {
transition: all var(--transition-duration-slow) ease-in-out;
}
}
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment