diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-05-18 16:23:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-18 20:23:04 +0000 |
commit | 22d066d28ce0d8a2e134a08f2c19f9c39a984d7e (patch) | |
tree | 50dba1dda845eea2817fa23ba2612dcc59d4b85f /ext | |
parent | 1865db1a9308fea1b3a82db2e8c70e583ad69820 (diff) |
Add word wrap to #extension-info on mobile to prevent page horizontal elongation (#966)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/css/action-popup.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/css/action-popup.css b/ext/css/action-popup.css index 639f1236..e88aa3ee 100644 --- a/ext/css/action-popup.css +++ b/ext/css/action-popup.css @@ -496,4 +496,8 @@ select.profile-select { width: 100%; padding-top: 37.7%; } + #extension-info { + max-width: 95vw; + overflow-wrap: break-word; + } } |