Last active
June 25, 2020 11:31
-
-
Save boronology/a19eb15f96e62e5cc20fe9cc8555218d to your computer and use it in GitHub Desktop.
Mastodonの上級者向けUIでカラム幅を画面幅いっぱいに広げて使うためのカスタムCSS。
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
.column { | |
flex-grow: 1; | |
flex-shrink: 0; | |
flex-basis: 360px; | |
} | |
.columns-area--mobile > .column { | |
flex-grow: 1; | |
flex-shrink: 1; | |
flex-basis: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment