Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
fix for "table-active" issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
vinorodrigues committed Jun 22, 2021
1 parent a8a5cfa commit 495b7ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/_variables-alt.scss
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ $table-accent-bg-alt: transparent !default;

$table-striped-color-alt: $table-color-alt !default;
$table-striped-bg-factor-alt: .05 !default;
$table-striped-bg-alt: rgba($black-alt, $table-striped-bg-factor-alt) !default;
$table-striped-bg-alt: rgba($white-alt, $table-striped-bg-factor-alt) !default;

$table-active-color-alt: $table-color-alt !default;
$table-active-bg-factor-alt: .1 !default;
$table-active-bg-alt: rgba($black-alt, $table-active-bg-factor-alt) !default;
$table-active-bg-alt: rgba($white-alt, $table-active-bg-factor-alt) !default;

$table-hover-color-alt: $table-color-alt !default;
$table-hover-bg-factor-alt: .075 !default;
$table-hover-bg-alt: rgba($black-alt, $table-hover-bg-factor-alt) !default;
$table-hover-bg-alt: rgba($white-alt, $table-hover-bg-factor-alt) !default;

$table-border-factor-alt: .1 !default;
$table-border-color-alt: $border-color-alt !default;
Expand Down

0 comments on commit 495b7ea

Please sign in to comment.