diff --git a/source/src/components/global/MobileNav.astro b/source/src/components/global/MobileNav.astro index d9633bf..a776b45 100755 --- a/source/src/components/global/MobileNav.astro +++ b/source/src/components/global/MobileNav.astro @@ -1,10 +1,13 @@ --- -import { GraphUp, HomeSimple, InfoCircle, ViewGrid } from "@iconoir/vue"; +import { HomeSimple, InputSearch, MediaVideoList, MoreHoriz, ProfileCircle, Safari, Settings } from "@iconoir/vue"; ---
- - - +

Home

+

Search

+

Explore

+

Subscription

+

Settings

+

More

\ No newline at end of file diff --git a/source/src/styles/mobile.scss b/source/src/styles/mobile.scss index a8aacd3..4e6d254 100755 --- a/source/src/styles/mobile.scss +++ b/source/src/styles/mobile.scss @@ -4,29 +4,35 @@ .mobile-navigation { position: fixed; - bottom: 24px; - left: 50%; - width: fit-content; - background: rgba(10, 10, 10, 0.8); - backdrop-filter:blur(4px) contrast(0.5); - padding: 12px; - gap: 24px; + bottom: 0px; + left: 0px; + width: calc(100% - 48px); + background: transparent; + backdrop-filter: blur(48px) contrast(0.8) brightness(0.8); justify-content: space-around; - z-index: 50; - transform: translate(-50%); - border-radius: 10rem; + z-index: 10; + padding: 0px 24px; a { background: transparent; - border-radius: 3rem; aspect-ratio: 1; color: white; - padding: 6px; + padding: 12px 0px; + width: 100%; display: flex; align-items: center; + justify-content: center; + flex-direction: column; + text-align: center; + text-decoration: none; + gap: 16px; svg { width: 32px; height: 28px; } + p { + font-size: 12px; + margin: 0px; + } } }