Skip to content

Commit

Permalink
Styles: Add 'active' class for 'FileTabsNavbar' anchor elements
Browse files Browse the repository at this point in the history
  • Loading branch information
ITurres committed Feb 6, 2024
1 parent 9b66682 commit 27b6eaa
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/styles/UI/FileTabsNavbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ $light-gray: colors.$light-gray;
left: 0;
right: 0;
width: 100%;
background:
linear-gradient(
90deg,
rgb(23, 23, 23),
rgb(23, 23, 23),
rgba(23, 23, 23, 0.605),
rgba(23, 23, 23, 0.221)
);
background: linear-gradient(
90deg,
rgb(23, 23, 23),
rgb(23, 23, 23),
rgba(23, 23, 23, 0.605),
rgba(23, 23, 23, 0.221)
);
font-family: sans-serif;
font-size: 1rem;
font-weight: 500;
Expand Down Expand Up @@ -59,6 +58,10 @@ $light-gray: colors.$light-gray;
&:focus {
background-color: $dark;
}

&.active {
background-color: $dark;
}
}
}
}
Expand Down

0 comments on commit 27b6eaa

Please sign in to comment.