Skip to content

Commit

Permalink
Self review
Browse files Browse the repository at this point in the history
  • Loading branch information
Anboias committed Nov 21, 2024
1 parent a44fcaf commit 0165eff
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/button/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ const Button = ({
<a
href={href}
className={classNames(
'button',
styles.button,
styles[type],
styles[theme],
Expand All @@ -66,7 +65,6 @@ const Button = ({
) : (
<button
className={classNames(
'button',
styles.button,
styles[type],
styles[theme],
Expand Down
20 changes: 20 additions & 0 deletions src/components/button/variants/tertiary-color.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,24 @@
color: $color-blue-25;
border: 1px solid $color-blue-25;
}

&.dark {
color: $color-blue-400;
border: $color-blue-400;

&:hover {
color: $color-blue-200;
border: $color-blue-200;
}

&:active {
color: $color-blue-500;
border: $color-blue-500;
}

&:disabled {
color: $color-blue-100;
border: $color-blue-100;
}
}
}

0 comments on commit 0165eff

Please sign in to comment.