diff --git a/src/components/VideoItem.astro b/src/components/VideoItem.astro index 06db5c2..67d1f6e 100644 --- a/src/components/VideoItem.astro +++ b/src/components/VideoItem.astro @@ -32,7 +32,7 @@ const ViewsFormat = ViewsConversion.format(Views)
- +

{LengthFormat}

@@ -54,6 +54,8 @@ const ViewsFormat = ViewsConversion.format(Views) border-radius: 6px; aspect-ratio: 16/9; object-fit: cover; + opacity: 0; + transition: 0.3s opacity; } p#vi-length { margin: -41px 0px 0px 0px; diff --git a/src/components/global/Header.astro b/src/components/global/Header.astro deleted file mode 100644 index 9ef6dfa..0000000 --- a/src/components/global/Header.astro +++ /dev/null @@ -1,46 +0,0 @@ ---- -// Components -import Search from '@components/Search.astro' - -// Icons -import { -Message, - Youtube -} from '@iconoir/vue' - -// i18n -import { t, changeLanguage } from "i18next" -import { LanguageSelector } from "astro-i18next/components" -import Dropdown from '@components/Dropdown.astro' ---- - -
-
- - -
-
-
- - \ No newline at end of file diff --git a/src/components/global/Sidebar.astro b/src/components/global/Sidebar.astro index 59a2aee..c30c013 100644 --- a/src/components/global/Sidebar.astro +++ b/src/components/global/Sidebar.astro @@ -11,35 +11,40 @@ import { // Icons import { - HomeSimple, GraphUp, Movie, MusicDoubleNote, Gamepad, AppleImac2021Side, EmojiTalkingHappy, - PizzaSlice, - Treadmill, PeaceHand, - InfoCircle, HelpCircle, Server, CurveArray, -Rocket, -PlanetAlt + PlanetAlt, +InputSearch, +ProfileCircle, +SettingsProfiles, +Settings } from '@iconoir/vue' // i18n import i18next, { t } from "i18next" +import SettingsLayout from '@layouts/Settings.astro' ---