Skip to content

Commit

Permalink
Added scrollbar for mobile version of FAQ page
Browse files Browse the repository at this point in the history
  • Loading branch information
swathivemula7 committed Oct 22, 2024
1 parent ae71a49 commit 583fff5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

* {
box-sizing: border-box;
overflow: hidden;
&::before,
&::after {
box-sizing: border-box;
Expand All @@ -32,6 +31,14 @@
flex-direction: column;
min-height: 100vh;
max-width:100vw;
overflow-y: hidden;
}

/* Media query for mobile */
@media (max-width: 768px) {
body {
overflow-y: scroll; /* Enable vertical scrolling on mobile */
}
}

.container {
Expand Down

0 comments on commit 583fff5

Please sign in to comment.