style: 风格切换按钮改为每行两个布局

- 使用 grid 布局,固定两列
- 按钮更宽,预览色块更清晰
- 保持右侧位置,便于快速切换
This commit is contained in:
2026-07-17 13:17:56 +08:00
parent 2f85dd5b28
commit 9f4d67a65f
+2 -2
View File
@@ -478,8 +478,8 @@ input[type="range"]::-moz-range-thumb {
}
.theme-buttons-grid {
display: flex;
flex-wrap: wrap;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}