Foundation5-更改顶栏断点



我正在尝试更改顶条的断点,并在某种程度上取得了成功。视觉方式。但是,在你进入小视图之前,你切换它的部分是不起作用的。

我已经更改了这些设置。为了设置新的断点,我还需要更改什么吗?JS?萨斯?

$topbar-breakpoint: #{lower-bound($large-range)} !default;  // Change to 9999px for always mobile layout
$topbar-media-query: $large-up !default;

如果我在生成的HTML中查看顶栏的元。我发现这个标签:

<meta class="foundation-mq-topbar">

其中包含:

meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}

首先,确保使用_settings.scss文件而不是_top-bar.scss文件编辑顶部栏设置。不应直接编辑任何Foundation组件。

如果只更改$topbar-breakpoint值,它应该可以工作。将$topbar-media-query保留为其默认值。您还应该删除!default标志。

$topbar-breakpoint: #{lower-bound($large-range)}; // Change to 9999px for always mobile layout
$topbar-media-query: "#{$screen} and (min-width:#{lower-bound($topbar-breakpoint)})";

相关内容

  • 没有找到相关文章

最新更新