Skip to content

Commit

Permalink
chore(split-button): make the mixins available via @use not @import
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiarokh authored and LucyChyzhova committed Oct 22, 2024
1 parent 033328b commit aa455f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/split-button/split-button.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '../../style/mixins';
@use '../../style/mixins';

:host(limel-split-button.has-menu) {
--button-padding-right: 2rem;
Expand Down Expand Up @@ -78,11 +78,11 @@ limel-menu {
width: 1rem;

&:not(:disabled) {
@include is-flat-clickable(
@include mixins.is-flat-clickable(
$color: 'inherit',
$color--hovered: 'inherit'
);
@include visualize-keyboard-focus();
@include mixins.visualize-keyboard-focus();
cursor: pointer;

&:focus-visible,
Expand Down

0 comments on commit aa455f6

Please sign in to comment.