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

Add back scrollbar to homepage

This commit is contained in:
Cooper Ransom 2024-04-22 19:38:49 -04:00
parent 9355be7ae5
commit 9f6e0ed5e5
3 changed files with 15 additions and 2 deletions

View file

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

View file

@ -1,4 +1,5 @@
import React, { useEffect, useRef, useState } from "react"; import React, { useEffect, useRef, useState } from "react";
import { Helmet } from "react-helmet-async";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
@ -439,6 +440,15 @@ export function Discover() {
return ( return (
<HomeLayout showBg={showBg}> <HomeLayout showBg={showBg}>
<div className="mb-16 sm:mb-2"> <div className="mb-16 sm:mb-2">
<Helmet>
{/* Hide scrollbar lmao */}
<style type="text/css">{`
html, body {
scrollbar-width: none;
-ms-overflow-style: none;
}
`}</style>
</Helmet>
<PageTitle subpage k="global.pages.discover" /> <PageTitle subpage k="global.pages.discover" />
<ThinContainer> <ThinContainer>
<div className="mt-44 space-y-16 text-center"> <div className="mt-44 space-y-16 text-center">

View file

@ -42,6 +42,11 @@ export function HomePage() {
<HomeLayout showBg={showBg}> <HomeLayout showBg={showBg}>
<div className="mb-16 sm:mb-24"> <div className="mb-16 sm:mb-24">
<Helmet> <Helmet>
<style type="text/css">{`
html, body {
scrollbar-gutter: stable;
}
`}</style>
<title>{t("global.name")}</title> <title>{t("global.name")}</title>
</Helmet> </Helmet>
<HeroPart searchParams={searchParams} setIsSticky={setShowBg} /> <HeroPart searchParams={searchParams} setIsSticky={setShowBg} />