We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0711d50 commit 49ae21fCopy full SHA for 49ae21f
src/App.css
@@ -16,6 +16,12 @@
16
--soft-pink: #f2ced8;
17
}
18
19
+html,
20
+body {
21
+ max-width: 100%;
22
+ overflow-x: hidden;
23
+}
24
+
25
.App {
26
position: relative;
27
@@ -26,6 +32,10 @@
32
width: 100%;
33
28
34
35
+.topbar-offset {
36
+ height: 50px;
37
38
29
39
body {
30
40
height: 100% !important;
31
41
font-family: "Ubuntu", sans-serif;
src/App.tsx
@@ -28,8 +28,9 @@ function App() {
<BrowserRouter>
<Navbar />
<WhatsappButton />
+ <div className="lg:hidden topbar-offset"></div>
<div className="app-content">
- <div className="sidebar-offset"></div>
+ <div className="hidden lg:block sidebar-offset"></div>
<AnimatedRoutes />
</div>
</BrowserRouter>
0 commit comments