fix: next suggestion and title not being showed

This commit is contained in:
Moyasee
2025-11-07 13:27:24 +02:00
parent 754e9c14b8
commit 893802be55
2 changed files with 17 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ export const requestSteam250 = async (path: string) => {
if (!steamGameUrl) return null;
return {
title: $title.textContent,
title: $title.getAttribute("data-title") || "",
objectId: steamGameUrl.split("/").pop(),
} as Steam250Game;
})

View File

@@ -130,6 +130,22 @@
}
}
// Randomizer button styles
&__randomizer-button {
position: fixed;
bottom: calc(globals.$spacing-unit * 5);
right: calc(globals.$spacing-unit * 5);
z-index: 100;
padding: calc(globals.$spacing-unit * 1.5) calc(globals.$spacing-unit * 2);
overflow: visible;
}
&__stars-icon-container {
width: 70px;
height: 70px;
position: relative;
}
// Skeleton-specific styles
&__skeleton {
.react-loading-skeleton {