fix image size for server logo and player head
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 53s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 53s
This commit is contained in:
parent
3c7cbfd95a
commit
d9b104067e
@ -57,7 +57,7 @@ export default async function Page({ params }: Params) {
|
||||
<div className="flex gap-2 flex-col md:flex-row">
|
||||
<div className="flex justify-center md:justify-start">
|
||||
<Image
|
||||
className="w-fit h-fit"
|
||||
className="w-[96px] h-[96px]"
|
||||
src={player.skin.parts.head}
|
||||
width={96}
|
||||
height={96}
|
||||
|
@ -81,7 +81,7 @@ export default async function Page({ params: { platform, hostname } }: Params) {
|
||||
<div className="flex gap-2 flex-col md:flex-row">
|
||||
{favicon && (
|
||||
<div className="flex justify-center md:justify-start">
|
||||
<Image className="w-fit h-fit" src={favicon} width={96} height={96} alt="The server's favicon" />
|
||||
<Image className="w-[96px] h-[96px]" src={favicon} width={96} height={96} alt="The server's favicon" />
|
||||
</div>
|
||||
)}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user