css - Unable to modify top-bar breakpoints using SCSS in Foundation -


i attempting modify breakpoint top-bar on foundation based website.

i started new project using "foundation new [project]" , running "compass watch" compile changes scss app.css

in _settings.scss, attempting set topbar-breakpoint 9999px in order display menu version so:

$topbar-breakpoint: 9999px; // change 9999px mobile layout $topbar-media-query: $medium-up; 

however, after compiling, app.css shows media query breakpoint @ 40.063em(the default)

@media screen , (min-width: 40.063em) { /* line 441, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */ .top-bar { background: #333333; overflow: visible; } 


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -