settings
テーブルのスクロールを有効化
code:style.css
.table-block-row {
overflow-x: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}
.table-block-row::-webkit-scrollbar {
display: none;
}
画像の大きさも変更する
code:style.css
.level-1 img { width: 16.7%; max-height: none; }
.level-2 img { width: 33.3%; max-height: none; }
.level-3 img { width: 50%; max-height: none; }
.level-4 img { width: 66.7%; max-height: none; }
.level-5 img { width: 83.3%; max-height: none; }
.level-6 img { width: 100%; max-height: none; }
英字と日本語文字の間にスペースを入れる
code:style.css
body { text-autospace: normal; }