Restore FPP selection grid columns

This commit is contained in:
sas.fajri
2026-04-13 17:03:23 +07:00
parent 6e85e2606d
commit 9a28421108

View File

@@ -739,8 +739,10 @@ tr:last-child td {
} }
.fpp-select-board { .fpp-select-board {
column-count: 5; display: grid;
column-gap: 6px; grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 6px;
align-items: start;
} }
.fpp-select-column { .fpp-select-column {
@@ -750,9 +752,7 @@ tr:last-child td {
border: 1px solid rgba(15, 23, 42, 0.08); border: 1px solid rgba(15, 23, 42, 0.08);
box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04); box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
break-inside: avoid; break-inside: avoid;
display: inline-block;
width: 100%; width: 100%;
margin: 0 0 6px;
} }
.fpp-select-head { .fpp-select-head {
@@ -1221,7 +1221,7 @@ tr:last-child td {
} }
.fpp-select-board { .fpp-select-board {
column-count: 4; grid-template-columns: repeat(4, minmax(0, 1fr));
} }
.fpp-sheet { .fpp-sheet {
@@ -1276,7 +1276,7 @@ tr:last-child td {
} }
.fpp-select-board { .fpp-select-board {
column-count: 2; grid-template-columns: repeat(2, minmax(0, 1fr));
} }
.fpp-sheet-head { .fpp-sheet-head {
@@ -1365,7 +1365,7 @@ tr:last-child td {
} }
.fpp-select-board { .fpp-select-board {
column-count: 1; grid-template-columns: 1fr;
} }
.fpp-sheet { .fpp-sheet {