-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b97068
commit 6a8e5a1
Showing
6 changed files
with
42 additions
and
16 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
client/src/app/components/navigation/navbar/navbar.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
<nav | ||
class="bg-dark w-full h-full overflow-hidden md:h-full md:w-[100px] md:order-1 md:flex md:flex-col md:justify-between md:items-center md:py-8"> | ||
<a routerLink="/"><img src="/assets/icons/spotify.svg" class="hidden md:block w-12" alt="spotify"></a> | ||
<a routerLink="/"><img ngSrc="/assets/icons/spotify.svg" class="hidden md:block" width="48" height="48" alt="spotify"></a> | ||
<div | ||
class="flex items-center text-white w-full h-full text-xs md:flex-col md:h-[60%] transition-all ease-linear duration-300"> | ||
<a | ||
class="opacity-50 w-full h-full flex flex-col items-center justify-center gap-y-1 hover:opacity-100 hover:bg-lightDark border-t-[3px] md:border-t-0 md:border-l-[4px] border-transparent hover:border-primary transition-colors ease-in-out duration-300" | ||
routerLink="/" routerLinkActive="active" [routerLinkActiveOptions]="{exact: true}"> | ||
<img src="/assets/icons/profile.svg" class="w-5"/> | ||
<img ngSrc="/assets/icons/profile.svg" width="20" height="20" alt="profile icon" /> | ||
<span class="inline-block">Profile</span> | ||
</a> | ||
<a | ||
class="opacity-50 w-full h-full flex flex-col items-center justify-center gap-y-1 hover:opacity-100 hover:bg-lightDark border-t-[3px] md:border-t-0 md:border-l-[4px] border-transparent hover:border-primary transition-colors ease-in-out duration-300" | ||
routerLink="artists" routerLinkActive="active"> | ||
<img src="/assets/icons/microphone.svg" class="w-5"/> | ||
<img ngSrc="/assets/icons/microphone.svg" class="w-5" alt="mic icon" height="16" width="16"/> | ||
<span class="inline-block">Top Artists</span> | ||
</a> | ||
<a | ||
class="opacity-50 w-full h-full flex flex-col items-center justify-center gap-y-1 hover:opacity-100 hover:bg-lightDark border-t-[3px] md:border-t-0 md:border-l-[4px] border-transparent hover:border-primary transition-colors ease-in-out duration-300" | ||
routerLink="tracks" routerLinkActive="active"> | ||
<img src="/assets/icons/music.svg" class="w-5"/> | ||
<img ngSrc="/assets/icons/music.svg" width="20" height="20" alt="track icon" /> | ||
<span class="inline-block">Top Tracks</span> | ||
</a> | ||
<a | ||
class="opacity-50 w-full h-full flex flex-col items-center justify-center gap-y-1 hover:opacity-100 hover:bg-lightDark border-t-[3px] md:border-t-0 md:border-l-[4px] border-transparent hover:border-primary transition-colors ease-in-out duration-300" | ||
routerLink="recent" routerLinkActive="active"> | ||
<img src="/assets/icons/time.svg" class="w-5"/> | ||
<img ngSrc="/assets/icons/time.svg" width="20" height="20" alt="recent icon" /> | ||
<span class="inline-block">Recent</span> | ||
</a> | ||
<a | ||
class="opacity-50 w-full h-full flex flex-col items-center justify-center gap-y-1 hover:opacity-100 hover:bg-lightDark border-t-[3px] md:border-t-0 md:border-l-[4px] border-transparent hover:border-primary transition-colors ease-in-out duration-300" | ||
routerLink="playlists" routerLinkActive="active"> | ||
<img src="/assets/icons/playlist.svg" class="w-5"/> | ||
<img ngSrc="/assets/icons/playlist.svg" class="w-5" alt="playlist icon" width="20" height="20"/> | ||
<span class="inline-block">Playlists</span> | ||
</a> | ||
</div> | ||
<a href="https://github.com/wissemgrari/spotify-profile" target="_blank"> | ||
<img src="/assets/icons/github.svg" class="hidden md:block w-8" alt="github"> | ||
<img ngSrc="/assets/icons/github.svg" class="hidden md:block" width="32" height="32" alt="github"> | ||
</a> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters