diff options
author | Ajay <[email protected]> | 2022-01-24 22:58:03 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2022-01-24 22:58:03 -0500 |
commit | 1fca10a1c1f68e7054bce7ba72bf99b16e4230e2 (patch) | |
tree | 5e38142d8a980a08e8f7adae421744affc31309f /public | |
parent | 96cefeaaf393bb44892047dd45ddb0583f41555c (diff) | |
download | SponsorBlock-1fca10a1c1f68e7054bce7ba72bf99b16e4230e2.tar.gz SponsorBlock-1fca10a1c1f68e7054bce7ba72bf99b16e4230e2.zip |
Max width on options page
Diffstat (limited to 'public')
-rw-r--r-- | public/options/options.css | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/public/options/options.css b/public/options/options.css index 7bfcc035..f77f84fd 100644 --- a/public/options/options.css +++ b/public/options/options.css @@ -308,14 +308,18 @@ input[type='number'] { text-align: left; padding: 80px 15% 0 3%; box-sizing: border-box; + display: flex; + justify-content: center; transition: padding 0.3s; } -#options.embed { +#options > div { + max-width: 60%; +} + +#options.embed > div { max-width: 100%; - text-align: left; - display: inline-block; } #title .profilepic { @@ -610,6 +614,7 @@ svg { #options { padding: 0 50px; } + .tab-heading { width: unset; min-width: unset; @@ -660,4 +665,8 @@ svg { #options { padding: 0 15px; } + + #options > div { + max-width: 100%; + } }
\ No newline at end of file |