Skip to content

Commit

Permalink
Add styles for scrollbar and nav
Browse files Browse the repository at this point in the history
  • Loading branch information
cristofima committed Feb 29, 2024
1 parent 05ed37c commit be4693a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/app/features/home/components/home.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,14 @@
width: 150px;
min-width: 150px;
}
}

.nav-tabs .nav-link {
color: rgba(var(--tmdbDarkBlue), 1);
font-weight: 600;
}

.nav-tabs .nav-link.active {
background-color: rgb(var(--tmdbDarkBlue));
color: #1ed5a9;
}
17 changes: 16 additions & 1 deletion src/styles.scss
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
/* You can add global styles to this file, and also import other style files */
:root {
--tmdbDarkBlue: 3, 37, 65;
}

::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
background-color: darkgrey;
}

::-webkit-scrollbar {
height: 8px; // height of horizontal scrollbar
width: 8px; // width of vertical scrollbar
}

0 comments on commit be4693a

Please sign in to comment.