Skip to content

Commit

Permalink
fix: mobile height.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed Nov 10, 2024
1 parent ec65dac commit a78241e
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions examples/auto-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/code-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
}
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions examples/editing-restrictions.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/fullscreen.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/i18n.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
12 changes: 6 additions & 6 deletions examples/image-filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
background: #171717;
}
Expand All @@ -35,15 +35,15 @@
position: absolute;
left: 0;
top: 0;
width: 100vw;
height: 50vh;
width: 100%;
height: 50%;
}
#result {
position: absolute;
left: 0;
bottom: 0;
width: 100vw;
height: 50vh;
width: 100%;
height: 50%;
display: flex;
align-items: center;
}
Expand Down
4 changes: 2 additions & 2 deletions examples/light-dark.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/live-testing.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
}
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions examples/multi-conditional-switch.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/particles.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
}
html,
body {
min-width: 100vw;
min-height: 100vh;
min-width: 100%;
min-height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions examples/rendering-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/simple-flow.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down
4 changes: 2 additions & 2 deletions examples/stress-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<style>
html,
body {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
Expand Down

0 comments on commit a78241e

Please sign in to comment.