Skip to content

Commit b8466fc

Browse files
Properly Resize Sponsor Logos
Ensure sponsor logos don't go past the edge of the screen, and maintain aspect ratio when sized down. Signed-off-by: Hassan Abouelela <[email protected]>
1 parent b2f12ac commit b8466fc

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

pydis_site/static/css/home/index.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,20 @@ h1 {
215215
}
216216

217217
#sponsors .columns {
218+
display: block;
218219
justify-content: center;
219220
margin: auto;
220221
max-width: 80%;
221222
}
222223

224+
#sponsors a {
225+
margin: auto;
226+
display: inline-block;
227+
}
228+
223229
#sponsors img {
224-
height: 5rem;
225-
margin: auto 1rem;
230+
width: auto;
231+
height: auto;
232+
233+
max-height: 5rem;
226234
}

0 commit comments

Comments
 (0)