fix(badges): constrained the badges to be 31 pixels high

This commit is contained in:
Fishandchips321 2026-03-04 15:41:39 +00:00
parent d284f8808b
commit 4c267d50c0
2 changed files with 6 additions and 1 deletions

View file

@ -8,7 +8,7 @@ const FriendBadges: Array<BadgeInfo> = [
title: "June" title: "June"
}, },
{ {
image: FriendBadgesPath + "astreaprtcl-small.png", image: FriendBadgesPath + "astreaprtcl.png",
url: "https://astreaprtcl.dev", url: "https://astreaprtcl.dev",
title: "⌬-0x7e5ac6" title: "⌬-0x7e5ac6"
}, },

View file

@ -5,6 +5,11 @@
margin-bottom: 5px; margin-bottom: 5px;
} }
.badge img {
height: 31px;
max-height: 31px;
}
.badgeBanner { .badgeBanner {
display: flex; display: flex;
flex-direction: row; flex-direction: row;