another tweak

This commit is contained in:
yuki 2025-10-12 08:14:26 -03:00
parent 39154c1759
commit 9f22e547ae
Signed by: yuki
GPG key ID: 0C98E6FF04EC3915
2 changed files with 7 additions and 2 deletions

View file

@ -134,6 +134,7 @@ body {
display: flex;
align-items: flex-start;
max-height: 64px;
overflow: hidden;
img {
height: 100%;
margin: 0px 0px 0px 0px;
@ -152,7 +153,11 @@ body {
padding: 0px 0px 0px 4px;
}
}
&:hover { background: hsl(0, 65%, 5%); }
&:hover {
background: hsl(0, 65%, 5%);
max-height: fit-content;
height: 100%;
}
}
}

View file

@ -30,7 +30,7 @@ const getTrack = async () => {
<img src="${json.track.image[1]['#text']}">
<div id="trackInfoText">
<h3 id="trackName">${json.track.name}</h3>
<p id="artistName">${json.track.artist['#text']}</p>
<p id="artistName">by ${json.track.artist['#text']}</p>
</div>
</div>
</a>