我尝试使用SASS和Compass设置移动优先工作流程。
因此,我想通过http://compass-style.org/reference/compass/typography/lists/horizontal_list/
为导航定义ul> li horizontal-inline-list我包括:
nav.mainnav ul {
@include horizontal-list(1rem);
}
到目前为止一切正常。但是,当我将断点用于更大的屏幕时,如何摆脱这种情况呢?
@include breakpoint($large){
nav.mainnav ul {
// I want to delete the include here
}
}
是否有一种简单的方法可以执行此操作,还是必须手动覆盖样式?
答案 0 :(得分:0)
在这种情况下,首先移动不是您的最佳选择。
@media (max-width: 20em) { // whatever your desired breakpoint is
nav.mainnav ul {
@include horizontal-list(1rem);
}
}
现在您不需要覆盖样式。