LazeMSS / OctoPrint-UICustomizer

UI Customizer for octoprint
165 stars 18 forks source link

Fix: No fixed header on mobile/responsive #178

Closed electronicm closed 3 years ago

electronicm commented 3 years ago

If the screen is under 979px wide, position for .navbar-fixed-top is set to static, but fixed is required.

old:

[...] @media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static} [...]

new:

[...] @media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed} [...]