芝麻web文件管理V1.00
编辑当前文件:/home/r5772835/public_html/anjii.ycreate.jp/sass/global/_responsive.scss
@use "sass:math"; //ブレイクポイントの値 $breakpoints: ( sp: 375, tb: 500, md: 768, lg: 1024, lg2: 1200, xl: 1440, ); //メディアクエリー //(maxwidthで指定しているため、値を下回ったら記載より下の値が適用される)PCファースト $mediaquerys: ( sp: "screen and (max-width: #{map-get($breakpoints,'sp')}px)", tb: "screen and (max-width: #{map-get($breakpoints,'tb')}px)", md: "screen and (max-width: #{map-get($breakpoints,'md')}px)", lg: "screen and (max-width: #{map-get($breakpoints,'lg')}px)", lg2: "screen and (max-width: #{map-get($breakpoints,'lg2')}px)", xl: "screen and (max-width: #{map-get($breakpoints,'xl')}px)", ); // ブレイクポイントの設定 @mixin mq($mediaquery: md) { @media #{map-get($mediaquerys, $mediaquery)} { @content; } }