0
私はSassでメディアクエリを書く方法を見つけようとしていました。これは私のコードSassにメディアクエリを書き込む方法は?
devices: ("sphone","phone","tablet")
$breakpoints: (\t width2: ('sphone' : 320, 'phone' : 360, 'tablet' : 600), height2: ('sphone' : 509, 'phone' : 583, 'tablet' : 952))
=screen-width($device)
@each $name in $devices
@if $device != $name
@error "No device of such name"
$media: (max-width: map-get(map-get($breakpoints,"width2"),$device) + px)
@media screen only and ($media)
@content
\t \t
\t \t
.hello
background: #333
@include screen-width("mobile")
background: #444
私はSASSで同じことをコンパイルしようとしていますが、それは私に次のエラーをスローし続けています。どうしてか分かりません。
Properties are only allowed within rules, directives, mixin includes, or other properties.
洞察?
これは機能します。ありがとう:) –