aboutsummaryrefslogtreecommitdiff
path: root/src/_mixins.scss
blob: 1fed16c3d12ab3593bc6df8334ece36db5c38100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@mixin unfocused-style {
  @content;

  &:focus:not(:focus-visible):not(:hover) {
    @content;
  }
}

@mixin focused-style {
  &:hover, &:focus {
    @content;
  }

  &:focus-visible {
    @content;
  }
}