Created
December 25, 2022 03:18
-
-
Save bunnyhero/95f9fbfc78e0731b8a5276f150df600b to your computer and use it in GitHub Desktop.
custom browser stylesheet to widen the home column of mastodon's advanced UI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body.layout-multiple-columns #mastodon .columns-area .column[aria-label="Home"] { | |
min-width: 420px !important; | |
max-width: 420px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
unfortunately, chrome no longer natively supports custom user stylesheets. firefox and safari do, though.
i purposefully used a css selector that is probably more specific than necessary, mainly to avoid having it affect other sites, in lieu of
@document url-prefix(blah blah)
which is not supported by safari. on the plus side, this means it should work on any mastodon 4.0+ instance using the advanced UI without having to specify any domains (although i've really only tried it with instances that are using the glitch-soc fork).