Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented two column layout for footer in mobile view #1945

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion _sass/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,27 @@
margin: 10px 20px;
padding: 0;

}
@media screen and (max-width: 450px) {
margin: 5px 10px; // Reduce margins for mobile
width: auto; // Let the grid control the width

h2 {
font-size: 1rem; // Smaller heading for mobile
margin: 10px 0;
}

li {
font-size: 0.9rem; // Slightly smaller text for mobile
margin: 5px 0;
}
}


@media #{$tablet} {
-webkit-flex: 0 0 fit-content;
flex: 0 0 fit-content;
}


li {
list-style: none;
Expand Down
Loading