Prevent notification content from overflowing outside the container
This commit is contained in:
parent
e8f20d1fd8
commit
5a33c77c3a
|
@ -27,21 +27,33 @@
|
|||
}
|
||||
}
|
||||
|
||||
#rs-mobile-nav-notifications,
|
||||
#rs-mobile-nav-profile {
|
||||
@include media-breakpoint-down("md") {
|
||||
.notification-dropdown,
|
||||
.profile-dropdown {
|
||||
bottom: unquote("calc(env(safe-area-inset-bottom) + #{$navbar-height + 2px})");
|
||||
position: fixed;
|
||||
top: unset;
|
||||
}
|
||||
|
||||
#rs-mobile-nav-profile {
|
||||
.profile-dropdown {
|
||||
left: unset;
|
||||
right: unquote("calc(env(safe-area-inset-right) + 15px)");
|
||||
}
|
||||
|
||||
#rs-mobile-nav-notifications {
|
||||
.notification-dropdown {
|
||||
left: unquote("calc(env(safe-area-inset-left) + 8px)");
|
||||
right: unquote("calc(env(safe-area-inset-right) + 8px)");
|
||||
width: unquote("calc(100vw - (8px + env(safe-area-inset-right)) - (8px + env(safe-area-inset-left)))");
|
||||
max-width: unquote("calc(100vw - (8px + env(safe-area-inset-right)) - (8px + env(safe-area-inset-left)))");
|
||||
min-width: unset;
|
||||
min-width: unset !important;
|
||||
right: unquote("calc(env(safe-area-inset-right) + 8px)");
|
||||
|
||||
.dropdown-item {
|
||||
padding: 8px;
|
||||
|
||||
& > .notification {
|
||||
padding: 0;
|
||||
white-space: normal;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue