Skip to content

Commit

Permalink
Removed the word 'default' from the custom CSS variable definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmaddox committed Dec 16, 2018
1 parent 1e58973 commit a517d9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/scss/_variables_project.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Add styles or override variables from the theme here.
Add styles or override the theme's variables here.
*/

Expand All @@ -12,9 +12,9 @@ $secondary: #fff;
// Nav bar

$white: #fff;
$navbar-dark-color: rgba($white, 1) !default;
$navbar-dark-hover-color: rgba($white, 0.75) !default;
$navbar-dark-active-color: $navbar-dark-color !default;
$navbar-dark-color: rgba($white, 1);
$navbar-dark-hover-color: rgba($white, 0.75);
$navbar-dark-active-color: $navbar-dark-color;

// Dropdown menu in nav bar

Expand Down

0 comments on commit a517d9d

Please sign in to comment.