Skip to content

Commit 063695a

Browse files
authored
fix:improve footer responsiveness on smaller screens (#3626)
* fix:improve footer responsiveness on smaller screens * fix: address footer responsiveness review feedback
1 parent ef48d85 commit 063695a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

doc/assets/scss/_styles_project.scss

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,30 @@
3333
.navbar-brand {
3434
font-family: "PT Mono", monospace;
3535
}
36+
37+
@media (max-width: 992px) {
38+
39+
footer .row {
40+
display: flex;
41+
flex-direction: column;
42+
align-items: center;
43+
}
44+
45+
footer .row > div {
46+
width: 100%;
47+
max-width: 100%;
48+
text-align: center;
49+
margin-bottom: 1.25rem;
50+
}
51+
52+
footer ul.list-inline {
53+
display: flex;
54+
justify-content: center;
55+
flex-wrap: wrap;
56+
}
57+
58+
footer ul.list-inline li {
59+
margin: 0.4rem;
60+
}
61+
}
62+

0 commit comments

Comments
 (0)