feat(FN-2582): widen board columns and align mobile snap centering

- Increase dashboard board column fixed width to 300px in styles and related expectations
- Update mobile board snap-centering behavior to match wider column sizing
- Adjust column fixed-width and board mobile tests to reflect the new layout measurements
This commit is contained in:
Fusion
2026-04-26 09:03:00 -07:00
committed by gsxdsm
parent c3275ce876
commit e89fc73bd7
3 changed files with 15 additions and 15 deletions

View File

@@ -478,7 +478,7 @@ body {
/* === Board === */
.board {
display: grid;
grid-template-columns: repeat(6, minmax(260px, 1fr));
grid-template-columns: repeat(6, minmax(300px, 1fr));
gap: var(--column-gap);
padding: var(--board-padding);
height: 100%;
@@ -2774,7 +2774,7 @@ input[type="range"]:focus-visible {
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
scroll-snap-type: x mandatory;
scroll-padding-inline: calc(50% - 140px);
scroll-padding-inline: calc(50% - 150px);
scroll-behavior: smooth;
scrollbar-width: none;
padding: var(--space-md);
@@ -2788,8 +2788,8 @@ input[type="range"]:focus-visible {
}
.board > .column {
width: 280px;
min-width: 280px;
width: 300px;
min-width: 300px;
flex-shrink: 0;
scroll-snap-align: center;
}