$green: #5cdb95; $text-color: #05386B; $mobile-width: 768px; @mixin mobile { @media (max-width: #{$mobile-width}) { @content; } } @mixin desktop { @media (min-width: #{$mobile-width + 1px}) { @content; } }