I am new to Zurb-Foundation, so bear with me on this question.
I am monkeying with the top-bar element and want to have the toggle-topbar button for small displays. I also want to reduce the base font size for the site; but when I set the base font size to 12px in _variables.scss, the toggle-topbar icon shows up way too early, something like 900px or so I guess. When I leave base font size at 100%, everything works as expected. My base font size is set in _variables.scss as follows:
$base-font-size: 12px !default;
$em-base: $base-font-size !default;
My html is as follows:
<nav class="top-bar">
<ul class="title-area">
<li class="name">
<h1>@Html.ActionLink("Application name", "Index", "Home")</h1>
</li>
<li class="toggle-topbar menu-icon">
<a href="#"><span>Menu</span></a>
</li>
</ul>
</nav>
Is there something else I need to do to make sure that setting my base font size does not corrupt the toggle-topbar setting?