1234567891011121314151617181920212223 |
- //
- // Misago Global Scaffolding
- // --------------------------------------------------
- // Disable horizontal scroll on mobile displays top-most containers
- @media screen and (max-width: @screen-sm-max) {
- html, body {
- overflow-x: hidden;
- }
- }
- // add top margin on smaller displays
- @media screen and (max-width: @screen-sm-max) {
- .sm-margin-top {
- margin-top: @line-height-computed;
- }
- .sm-margin-top-half {
- margin-top: @line-height-computed * 0.33;
- }
- }
|