スマホで開いたScrapboxの画面を3列表示にする設定
https://scrapbox.io/files/69b861c9b9e150750ae59fcd.png👈👈👈https://scrapbox.io/files/69b86210b9e150750ae59fea.png
これをSettingsに貼ることで、スマホで開いたScrapboxの画面を3列表示にできる。 code:style.css
@media screen and (max-width: 767px) {
.related-page-list ul.grid,
.page-list ul.grid{
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.iframe-video-player iframe {
max-height: 47vw;
}
}