Skip to content

Commit b06c582

Browse files
committed
Make the 'Our Sponsors' section responsive
Add the css property 'overflow:hidden' to the links in our sponsors section. This eliminates its overflowing that leads to displaying an empty giant chunk on the rightmost side of the website homepage when opened on smaller screens.
1 parent 0404abd commit b06c582

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/.vuepress/styles/index.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,23 @@ html[data-theme=dark] .custom-container.details th {
8383
margin-left: auto;
8484
margin-right: auto;
8585
}
86+
87+
// make the sponsors section responsive
88+
@media (max-width: 700px) {
89+
.links {
90+
display: inline-block;
91+
max-width: 100%;
92+
max-height: auto;
93+
overflow: hidden;
94+
95+
img{
96+
object-fit: contain;
97+
max-width: 100%;
98+
max-height: auto;
99+
}
100+
}
101+
}
102+
86103
//Website footer section
87104

88105
//Theme adds a sidebar width even on mobile when it doesnt show, this removes it.

0 commit comments

Comments
 (0)