From 241e36b2a654d6fcc28a0f1d5e11ef60c982d3cd Mon Sep 17 00:00:00 2001 From: relative Date: Wed, 21 Sep 2022 13:37:57 -0400 Subject: [PATCH] web: fix scrolling in modals in low-height views (#3596) --- web/src/common/styles/authentik.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/src/common/styles/authentik.css b/web/src/common/styles/authentik.css index 881e2f5ed..f45212b79 100644 --- a/web/src/common/styles/authentik.css +++ b/web/src/common/styles/authentik.css @@ -106,6 +106,11 @@ html > form > input { margin-bottom: 6px; } +/* Fix scrolling in modals in low-height viewports on Chromium */ +.pf-c-modal-box__body { + overflow: hidden; +} + @media (prefers-color-scheme: dark) { .ak-static-page h1 { color: var(--ak-dark-foreground);