Skip to content

Commit 8d27c4f

Browse files
authored
fix: Change h-screen to h-svh in BaseViewTemplate (#6529)
## Summary - Fixed height issue in BaseViewTemplate by changing `h-screen` to `h-svh` for better viewport handling ## Changes - Updated `BaseViewTemplate.vue` to use `h-svh` (small viewport height) instead of `h-screen` - This ensures proper height calculation on mobile devices with dynamic browser UI 🤖 Generated with [Claude Code](https://claude.ai/code) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6529-fix-Change-h-screen-to-h-svh-in-BaseViewTemplate-29f6d73d36508117871cd4ff165c2109) by [Unito](https://www.unito.io)
1 parent 02aaf57 commit 8d27c4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/templates/BaseViewTemplate.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
class="flex h-screen w-screen flex-col font-sans"
3+
class="flex h-svh w-screen flex-col font-sans"
44
:class="[
55
dark
66
? 'dark-theme bg-neutral-900 text-neutral-300'

0 commit comments

Comments
 (0)