Last active
April 25, 2023 16:13
-
-
Save ln-north/7aca8d965a880382a9a21a63d6b383dc to your computer and use it in GitHub Desktop.
マストドン用の簡単なカスタム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
| body { | |
| font-family: 'Avenir Next', 'YuGothic' !important; | |
| -webkit-font-smoothing: antialiased; | |
| } | |
| .columns-area > .column { | |
| display: none; | |
| } | |
| .columns-area > .column + .column { | |
| display: flex; | |
| } | |
| .columns-area > .column:nth-child(2) { | |
| order: 2; | |
| } | |
| .columns-area > .column:nth-child(3) { | |
| order: 1; | |
| } | |
| .drawer { | |
| width: 360px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment