tinazone commited on
Commit
fba22b7
·
verified ·
1 Parent(s): 8a85087

mobile scroll

Browse files
Files changed (1) hide show
  1. styles/globals.css +13 -0
styles/globals.css CHANGED
@@ -5,10 +5,23 @@
5
  @layer base {
6
  html {
7
  @apply antialiased;
 
 
8
  }
9
 
10
  body {
11
  @apply bg-black text-white;
 
 
 
 
 
 
 
 
 
 
 
12
  }
13
  }
14
 
 
5
  @layer base {
6
  html {
7
  @apply antialiased;
8
+ height: 100%;
9
+ -webkit-text-size-adjust: 100%;
10
  }
11
 
12
  body {
13
  @apply bg-black text-white;
14
+ min-height: 100%;
15
+ position: relative;
16
+ -webkit-overflow-scrolling: touch;
17
+ overflow-y: auto;
18
+ overscroll-behavior-y: none;
19
+ }
20
+
21
+ #__next {
22
+ min-height: 100vh;
23
+ display: flex;
24
+ flex-direction: column;
25
  }
26
  }
27