Web技術 【css】scssファイルでPC版とSP版のブレイクポイントを設定する方法
$breakpoint_sp: 767px;$breakpoint_pc: 768px;@mixin sp { @media screen and (max-width: $breakpoint_sp) { @content; }}@mix...
Web技術
Web技術