我想在语义ui构建系统中添加一个新的.less
文件。我怎么能这样做?
This is the file i want to add
像这样/* Mobile */
@media only screen and (max-width: (@tabletBreakpoint - 1)) {
[class*="mobile hidden"],
[class*="tablet only"]:not(.mobile),
[class*="computer only"]:not(.mobile),
[class*="large screen only"]:not(.mobile),
[class*="widescreen only"]:not(.mobile),
[class*="or lower hidden"] {
display: none !important;
}
}
我想利用语义变量并根据它编译新文件。
答案 0 :(得分:1)
我已将代码段添加到默认主题site.overrides
并运行gulp build
,一切正常。