fix(fusion_clock): dashboard uses full page width + owns its scroll container

Drop the 1200px centred cap (wasted side space) and make .fclk-dash height:100%; overflow-y:auto so tall content scrolls. Bump 3.14.0 -> 3.14.1.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-05-31 02:42:28 -04:00
parent fef99809e5
commit 8d6fcb75a7
2 changed files with 8 additions and 3 deletions

View File

@@ -594,9 +594,14 @@ $fclk-g-pending: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
.fclk-dash {
background: $fclk-dash-page;
min-height: 100%;
// Own the scroll: the Odoo action container doesn't reliably scroll a
// client action whose content exceeds the viewport, so make the
// dashboard root the scroll container.
height: 100%;
overflow-y: auto;
.fclk-dash-wrap { max-width: 1200px; margin: 0 auto; padding: 20px; }
// Use the full page width — no centred max-width cap.
.fclk-dash-wrap { width: 100%; padding: 20px 24px 48px; }
.fclk-dash-header {
display: flex; justify-content: space-between; align-items: flex-start;