diff --git a/packages/react/src/utils/_responsive.scss b/packages/react/src/utils/_responsive.scss index c11e569..2e428b4 100644 --- a/packages/react/src/utils/_responsive.scss +++ b/packages/react/src/utils/_responsive.scss @@ -11,3 +11,9 @@ @content; } } +@mixin media($name, $tokens: $themes) { + $breakpoint: breakpoint($name, $tokens); + @media (max-width: #{$breakpoint}) { + @content; + } +}