如何将新的较少文件添加到语义ui构建系统以利用无语义变量

时间:2016-05-09 05:22:20

标签: responsive-design semantic-ui

我想在语义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;
  }
}

我想利用语义变量并根据它编译新文件。

1 个答案:

答案 0 :(得分:1)

我已将代码段添加到默认主题site.overrides并运行gulp build,一切正常。