私は多くのcssファイルと多くの出現を持っています:
@media all and (max-width: 400px), (orientation: portrait) {
....//In each file different style that relevant to the component the file represnt
}
スタイラスを使用しています。
ある日、上司からメディアクエリを次のように変更するように依頼されました。
@media all and (max-width: 400px), (max-height: 400px) {
....
}
次に、すべてのファイルを検索して、新しいメディアクエリに置き換える必要があります。
このメディアクエリをミックスインなどに入れるオプションはありますか?