Skip to content

Commit 6bdd553

Browse files
fix: viewport sizing on mobile
1 parent 644cad6 commit 6bdd553

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/App.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@ html, body {
7878
overflow: hidden;
7979
}
8080
81-
#app {
82-
width: 100vw;
83-
height: 100vh;
81+
#app-container {
82+
width: 100%;
83+
height: 100%;
8484
}
8585
8686
.app {
8787
display: flex;
8888
flex-direction: column;
89-
height: 100vh;
90-
width: 100vw;
89+
height: 100%;
90+
width: 100%;
9191
position: absolute;
9292
top: 0;
9393
left: 0;

0 commit comments

Comments
 (0)