Skip to content

Instantly share code, notes, and snippets.

@boronology
Last active June 25, 2020 11:31
Show Gist options
  • Save boronology/a19eb15f96e62e5cc20fe9cc8555218d to your computer and use it in GitHub Desktop.
Save boronology/a19eb15f96e62e5cc20fe9cc8555218d to your computer and use it in GitHub Desktop.
Mastodonの上級者向けUIでカラム幅を画面幅いっぱいに広げて使うためのカスタムCSS。
.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