File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,6 @@ import { isDesktop, isMobile } from "react-device-detect";
16
16
import Statusbar from "./components/Statusbar" ;
17
17
import Bottombar from "./components/navigation/Bottombar" ;
18
18
19
- const mobileInsets = "absolute left-0 top-2 right-0 bottom-0 bottom-16"
20
- const desktopInsets = "absolute left-16 top-16 top-2 right-0 bottom-8"
21
-
22
19
function App ( ) {
23
20
return (
24
21
< Providers >
@@ -30,7 +27,7 @@ function App() {
30
27
{ isMobile && < Bottombar /> }
31
28
< div
32
29
id = "pageRoot"
33
- className = { ` ${ isDesktop ? desktopInsets : mobileInsets } overflow-hidden` }
30
+ className = "absolute left-0 md:left-16 top-2 right-0 bottom-16 md:bottom-8 overflow-hidden"
34
31
>
35
32
< Routes >
36
33
< Route path = "/" element = { < Live /> } />
You can’t perform that action at this time.
0 commit comments