15 lines
217 B
CSS
15 lines
217 B
CSS
:root {
|
|
--safe-area-top: env(safe-area-inset-top);
|
|
--safe-area-bottom: env(safe-area-inset-bottom, 0);
|
|
}
|
|
body {
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#__next {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|