1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Fix silly shifting when hoving a catogory (i cant spel :3)

This commit is contained in:
Cooper Ransom 2024-04-03 20:32:03 -04:00
parent 1fbc023ec5
commit 70b71fa70e
2 changed files with 3 additions and 7 deletions

View file

@ -8,6 +8,8 @@ body {
min-height: 100vh;
min-height: 100dvh;
font-size: 1.0235em;
scrollbar-width: none; /* Hide scrollbar for Firefox */
-ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
}
html[data-full],

View file

@ -242,12 +242,6 @@ export function Discover() {
setIsHovered(false);
};
useEffect(() => {
return () => {
document.documentElement.style.scrollbarWidth = "none";
};
}, []);
function renderMovies(medias: Media[], category: string, isTVShow = false) {
const categorySlug = category.toLowerCase().replace(/ /g, "-"); // Convert the category to a slug
const displayCategory =