diff --git a/src/app/core/components/navigation-bar/navigation-bar.html b/src/app/core/components/navigation-bar/navigation-bar.html index f465b4a..c290c1d 100644 --- a/src/app/core/components/navigation-bar/navigation-bar.html +++ b/src/app/core/components/navigation-bar/navigation-bar.html @@ -73,5 +73,4 @@
} -
-
+
diff --git a/src/app/core/components/navigation-bar/navigation-bar.scss b/src/app/core/components/navigation-bar/navigation-bar.scss index 18ad858..ad79550 100644 --- a/src/app/core/components/navigation-bar/navigation-bar.scss +++ b/src/app/core/components/navigation-bar/navigation-bar.scss @@ -35,33 +35,6 @@ ul li a { } .mobile-menu ul li a { - font-size: 1.3rem; + font-size: 1rem; padding: 15px 30px; } - -.blur { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 120px; - pointer-events: none; -} - -.blur1 { - z-index: 10; - backdrop-filter: blur(3px); - mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%); - -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%); -} - -.blur2 { - z-index: 20; - backdrop-filter: blur(5px); - mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 1) 100%); - -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 1) 100%); -} - -.blurred { - backdrop-filter: blur(5px); -} \ No newline at end of file diff --git a/src/app/pages/home/home.html b/src/app/pages/home/home.html index 8618f0d..a4e2d48 100644 --- a/src/app/pages/home/home.html +++ b/src/app/pages/home/home.html @@ -1,16 +1,12 @@ -
-
+
+
{{ 'home.subheader' | translate }}
-
+
diff --git a/src/app/pages/home/home.ts b/src/app/pages/home/home.ts index 2bf1c29..2b34183 100644 --- a/src/app/pages/home/home.ts +++ b/src/app/pages/home/home.ts @@ -13,8 +13,4 @@ import { AnimateOnScrollModule } from 'primeng/animateonscroll'; }) export class Home { - isMobile() { - return window.innerWidth < 1024; - } - }