Skip to content

Commit

Permalink
fix: enable pseudo-classes from the style
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 authored and Robbert committed Aug 11, 2022
1 parent 7e9a20a commit 9d48b9d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions components/button-link/css/_mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,15 @@
@mixin utrecht-button-link--focus-visible {
@include utrecht-button--focus-visible;
}

@mixin utrecht-button-link--html-button {
&:hover {
@include utrecht-button-link--hover;
}
&:focus {
@include utrecht-button-link--focus;
}
&:focus-visible {
@include utrecht-button-link--focus-visible;
}
}
4 changes: 4 additions & 0 deletions components/button-link/css/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@
.utrecht-button-link--focus-visible {
@include utrecht-button-link--focus-visible;
}

.utrecht-button-link--html-button {
@include utrecht-button-link--html-button;
}

0 comments on commit 9d48b9d

Please sign in to comment.