File tree Expand file tree Collapse file tree
generators/app/templates/theme/_src/scss Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33* Breakpoint mixin
44********************
55**/
6+ @use ' sass:map' ;
67@use ' variables' as * ;
78
89$breakpoints : (
@@ -13,11 +14,11 @@ $breakpoints: (
1314);
1415
1516@mixin breakpoint ($screen , $type : min ) {
16- @if map_has_key ($breakpoints , $screen ) {
17- $screen : map_get ($breakpoints , $screen );
17+ @if map . has-key ($breakpoints , $screen ) {
18+ $screen : map . get ($breakpoints , $screen );
1819
1920 @if $type == max {
20- $screen : $screen - 1 px ;
21+ $screen : $screen - 0.0625 rem ;
2122 }
2223
2324 @media only screen and (#{$type }-width : $screen ) {
Original file line number Diff line number Diff line change 99* library in Twig file using {{ attach_library('theme/library') }} .
1010********************
1111**/
12- @import " ../settings" ;
12+ @use ' ../settings' as * ;
You can’t perform that action at this time.
0 commit comments