2
0
mirror of synced 2025-02-24 17:08:11 +00:00
blog/themes/embark/source/css/01-tools/_tools.breakpoint.scss
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

11 lines
226 B
SCSS

/// Breakpoint
/// Using this for breakpoints
/// @group Layout
/// @param {string} $name
@mixin breakpoint($name) {
$value: map-get($layout-breakpoints, $name);
@media screen and (min-width: $value) {
@content;
}
}