fix: overflow login page

This commit is contained in:
nafees nazik
2023-09-11 22:42:02 +05:30
parent 49d6f85f42
commit 1ca106279e
2 changed files with 2 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ export default function LoginPage() {
const { t } = useTranslation();
return (
<div className="flex h-screen flex-col justify-center bg-gradient-to-tr from-mineshaft-600 via-mineshaft-800 to-bunker-700 px-6 pb-28 ">
<div className="flex min-h-screen flex-col justify-center bg-gradient-to-tr from-mineshaft-600 via-mineshaft-800 to-bunker-700 px-6 pb-28 ">
<Head>
<title>{t("common.head-title", { title: t("login.title") })}</title>
<link rel="icon" href="/infisical.ico" />

View File

@@ -1,10 +1,6 @@
@tailwind base;
@tailwind components;
html {
@apply overflow-hidden;
}
.rdp-day,
.rdp-nav_button {
@apply rounded-md hover:text-mineshaft-500;
@@ -16,7 +12,7 @@ html {
}
.rdp-day_today {
@apply bg-primary/50 hover:bg-primary-600 text-mineshaft-500;
@apply bg-primary/50 text-mineshaft-500 hover:bg-primary-600;
}
@tailwind utilities;