style(fe): enforce viewport-fit zero-scroll layout for all non-dashboard workstation screens

This commit is contained in:
2026-08-15 21:18:26 +09:00
parent 95d5ebc14e
commit 2a75df7c5f
3 changed files with 3 additions and 3 deletions
@@ -7,6 +7,6 @@
</template>
<style scoped>
.ks-review-workbench { display: grid; grid-template-columns: minmax(18rem, 28rem) minmax(24rem, 1fr) minmax(18rem, 24rem); gap: var(--ks-space-3); align-items: start; }
.ks-review-workbench > * { min-height: 30rem; padding: var(--ks-space-4); }
.ks-review-workbench > * { height: calc(100vh - 220px); max-height: calc(100vh - 220px); padding: var(--ks-space-3); overflow-y: auto; }
@media (max-width: 1200px) { .ks-review-workbench { grid-template-columns: 1fr; } }
</style>