我有很多 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) {
....
}
现在我需要搜索我的所有文件并替换为新的媒体查询。
是否有任何选项可以将此媒体查询放入 mixin 或其他东西中?