Skip to content

Commit

Permalink
Fixes alert not using accent color by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Studio384 committed Aug 17, 2022
1 parent 1ee26b0 commit ba0e9a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/_alert.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
border: 1px solid $border-color;
border-left-width: 3px;
border-radius: $border-radius;
border-left-color: var(--color-600, $border-color);
border-left-color: var(--color-600, var(--accent-600));
align-items: center;
justify-content: flex-start;

a {
color: var(--color-700);
color: var(--color-700, var(--accent-700));

&:hover {
color: var(--color-800);
color: var(--color-800, var(--accent-800));
}
}
}
Expand Down

0 comments on commit ba0e9a7

Please sign in to comment.