fix(ui): remove redundant app-shell top gap (#1480) #225

Merged
bvandeusen merged 1 commits from dev into main 2026-07-13 14:12:41 -04:00
+6 -6
View File
@@ -18,11 +18,11 @@ const route = useRoute()
<style scoped> <style scoped>
.fc-content { .fc-content {
min-height: 100vh; min-height: 100vh;
/* Push initial viewport content below the sticky TopNav. Without /* NO padding-top: the TopNav is position:sticky, so it already reserves its
this, some views' first rows / form fields / table headers can own space in the v-app flex column — content flows directly below it. The
end up obscured by the navbar (depending on parent overflow old 64px padding-top was a leftover from a FIXED navbar and double-counted
context interacting with position: sticky). Scrolled-down content that space, leaving a large empty band at the top of EVERY view (and pushing
still slides under the nav — the gradient-fade design is intact. */ the full-height calc(100vh - 64px) views down so they overflowed). Removed
padding-top: 64px; 2026-07-13. Scrolled content still slides under the sticky nav as before. */
} }
</style> </style>