[bugfix] Fix wide images being squished when used as instance avatar (#2669)

This commit is contained in:
tobi 2024-02-21 14:24:04 +01:00 committed by GitHub
commit 2d9e498f96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 52 additions and 27 deletions

View file

@ -18,12 +18,23 @@
*/
/*
Render instance title a
bit bigger on index page.
Render instance title + image
a bit bigger on index page.
Overrides the css from page.css.
*/
.page-header a h1 {
font-size: 2rem;
line-height: 2rem;
.page-header {
& > a {
& > h1 {
font-size: 2rem;
line-height: 2rem;
}
& > img {
align-self: center;
max-height: 6rem;
}
}
}
/*