Skip to content

Commit

Permalink
fix the way to apply scss
Browse files Browse the repository at this point in the history
  • Loading branch information
WNomunomu committed Sep 20, 2024
1 parent dad37dd commit 17a35ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@use '@growi/core-styles/scss/bootstrap/init' as bs;

.dropdown-item:active{
--#{$prefix}dropdown-link-active-bg: #{( bs.$gray-700 )};
--#{$prefix}dropdown-link-active-bg: var(--#{$prefix}gray-700);
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@use '@growi/core-styles/scss/bootstrap/init' as bs;

.dropdown-item:active{
--#{$prefix}dropdown-link-active-color: #{( bs.$gray-600 )};
--#{$prefix}dropdown-link-active-bg: #{( bs.$gray-200 )};
--#{$prefix}dropdown-link-active-color: var(----#{$prefix}gray-600);
--#{$prefix}dropdown-link-active-bg: var(----#{$prefix}gray-200);
}

0 comments on commit 17a35ea

Please sign in to comment.