Commit 1f382e80 authored by Mahmoud Aglan's avatar Mahmoud Aglan

fix: board max-height viewport-constrained so it fills vertically

max-height: calc(100vh - 150px) ensures board fills available height,
aspect-ratio 1.5:1 derives width from that.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent 88ee87ee
......@@ -46,7 +46,8 @@
.bg-board {
position: relative;
width: 100%;
aspect-ratio: 1.45 / 1;
max-height: calc(100vh - 150px);
aspect-ratio: 1.5 / 1;
background: var(--bg-board-wood);
border-width: 10px;
border-style: solid;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment