From 1ca106279e7446b6ddf57e33b7d8fd15a38bface Mon Sep 17 00:00:00 2001 From: nafees nazik Date: Mon, 11 Sep 2023 22:42:02 +0530 Subject: [PATCH] fix: overflow login page --- frontend/src/pages/login/index.tsx | 2 +- frontend/src/styles/globals.css | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/frontend/src/pages/login/index.tsx b/frontend/src/pages/login/index.tsx index cf1d96d1f..8fd27c429 100644 --- a/frontend/src/pages/login/index.tsx +++ b/frontend/src/pages/login/index.tsx @@ -9,7 +9,7 @@ export default function LoginPage() { const { t } = useTranslation(); return ( -
+
{t("common.head-title", { title: t("login.title") })} diff --git a/frontend/src/styles/globals.css b/frontend/src/styles/globals.css index fe1015485..a895d1b87 100644 --- a/frontend/src/styles/globals.css +++ b/frontend/src/styles/globals.css @@ -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;