diff --git a/web/modals/chat/message-reactions-modal.css b/web/modals/chat/message-reactions-modal.css --- a/web/modals/chat/message-reactions-modal.css +++ b/web/modals/chat/message-reactions-modal.css @@ -6,6 +6,7 @@ flex-direction: column; font-size: var(--l-font-18); overflow-y: auto; + max-height: 100%; } div.userRowContainer { diff --git a/web/modals/chat/pinned-messages-modal.css b/web/modals/chat/pinned-messages-modal.css --- a/web/modals/chat/pinned-messages-modal.css +++ b/web/modals/chat/pinned-messages-modal.css @@ -1,5 +1,7 @@ .container { height: 80vh; + overflow: scroll; + max-height: 100%; } hr.separator { diff --git a/web/modals/modal.css b/web/modals/modal.css --- a/web/modals/modal.css +++ b/web/modals/modal.css @@ -74,6 +74,7 @@ .modalContentContainer { padding: 16px 32px 24px; + overflow: hidden; } .buttonContainer { diff --git a/web/modals/search-modal.css b/web/modals/search-modal.css --- a/web/modals/search-modal.css +++ b/web/modals/search-modal.css @@ -2,4 +2,5 @@ display: flex; flex-direction: column; overflow: hidden; + max-height: 100%; } diff --git a/web/modals/threads/gallery/thread-settings-media-gallery.css b/web/modals/threads/gallery/thread-settings-media-gallery.css --- a/web/modals/threads/gallery/thread-settings-media-gallery.css +++ b/web/modals/threads/gallery/thread-settings-media-gallery.css @@ -5,6 +5,7 @@ justify-content: flex-start; height: 80vh; padding-top: 16px; + max-height: 100%; } div.mediaContainer { diff --git a/web/modals/threads/notifications/notifications-modal.css b/web/modals/threads/notifications/notifications-modal.css --- a/web/modals/threads/notifications/notifications-modal.css +++ b/web/modals/threads/notifications/notifications-modal.css @@ -4,6 +4,8 @@ row-gap: 20px; min-width: 343px; width: min-content; + overflow: auto; + max-height: 100%; } p.notice { diff --git a/web/modals/threads/sidebars/sidebars-modal.css b/web/modals/threads/sidebars/sidebars-modal.css --- a/web/modals/threads/sidebars/sidebars-modal.css +++ b/web/modals/threads/sidebars/sidebars-modal.css @@ -3,6 +3,7 @@ flex-direction: column; line-height: var(--line-height-text); height: 80vh; + overflow: hidden; } div.sidebarList {