Skip to content

Commit

Permalink
style: fix unclickable bottom FAQs in mobile due to footer overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
premagarwals committed Nov 15, 2024
1 parent e8fbc84 commit 0296a47
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 8 additions & 2 deletions src/styles/FAQ.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,16 @@
}

.faq-items-container {
width: 70%;
max-width: 70vw;
width: 90%;
max-width: 80vw;
}

@media (min-width: 768px) {
.faq-items-container {
width: 70%;
max-width: 70vw;
}
}
.accordion-item {
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
Expand Down
4 changes: 1 addition & 3 deletions src/styles/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
color: #1a1a1a;
margin-top: -400px;
font-family: Arial, sans-serif;
margin-top: 0px;
}

.footer-content {
Expand Down Expand Up @@ -40,9 +41,6 @@
}

@media (min-width: 768px) {
.footer {
margin-top: 0px;
}
.footer-columns {
display: flex;
flex-direction: row;
Expand Down

0 comments on commit 0296a47

Please sign in to comment.