foundation: project guide, tooling, design tokens, bilingual shell and routing contracts
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
14
src/_breakpoints.scss
Normal file
14
src/_breakpoints.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
@use 'sass:map';
|
||||
|
||||
$breakpoints: (
|
||||
sm: 40rem,
|
||||
md: 48rem,
|
||||
lg: 64rem,
|
||||
xl: 80rem,
|
||||
);
|
||||
|
||||
@mixin respond-to($name) {
|
||||
@media (min-width: map.get($breakpoints, $name)) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user