diff options
author | Juan Xavier Gomez <jgomez@codecademy.com> | 2022-12-06 18:40:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 00:40:37 +0100 |
commit | 21b208afcbb5b1a6f2f49eb6db478fc9a99ad272 (patch) | |
tree | afb1612eb7e5d64e552fc63bd8597d4239884d61 /app | |
parent | 76454cc63803f3619c6c2352abac9646004e32c4 (diff) |
Fix hidden overflow on interaction modal (#21763)
* Fix hidden overflow on interaction modal * only update overflow y
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 318e4b3de..b56d43000 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -7981,7 +7981,8 @@ noscript { width: 600px; background: $ui-base-color; border-radius: 8px; - overflow: hidden; + overflow-x: hidden; + overflow-y: auto; position: relative; display: block; padding: 20px; |