From c386045b2865008ebd563b2e3e2b6af4cea86344 Mon Sep 17 00:00:00 2001 From: Riccardo Senica Date: Fri, 29 Nov 2024 21:46:56 +0100 Subject: [PATCH] style: footer tweaking --- app/globals.css | 16 ++++++++++++++++ app/privacy/page.tsx | 2 +- components/Footer.tsx | 30 +++++++++++++++++++----------- 3 files changed, 36 insertions(+), 12 deletions(-) diff --git a/app/globals.css b/app/globals.css index 4830cf0..90cab35 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,6 +2,22 @@ @tailwind components; @tailwind utilities; +html, +body { + margin: 0; + padding: 0; + overflow-x: hidden; + overscroll-behavior: none; + width: 100%; + position: relative; +} + +#root, +#__next { + overflow-x: hidden; + width: 100%; +} + @layer base { :root { --background: 0 0% 100%; diff --git a/app/privacy/page.tsx b/app/privacy/page.tsx index bf504ab..dd049f0 100644 --- a/app/privacy/page.tsx +++ b/app/privacy/page.tsx @@ -13,7 +13,7 @@ const Privacy = () => { }; const body = ( -
+

This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the diff --git a/components/Footer.tsx b/components/Footer.tsx index fa1e70a..4492224 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -12,26 +12,34 @@ export const Footer = () => { if (pathname === '/unsubscribe') { return ( -

+
+
+ + Privacy Policy + +
); } if (pathname === '/privacy') { return ( -
-
-
+
+
+
-
-
- +
+ +
);