scaffolding.less 476 B

1234567891011121314151617181920212223
  1. //
  2. // Misago Global Scaffolding
  3. // --------------------------------------------------
  4. // Disable horizontal scroll on mobile displays top-most containers
  5. @media screen and (max-width: @screen-sm-max) {
  6. html, body {
  7. overflow-x: hidden;
  8. }
  9. }
  10. // add top margin on smaller displays
  11. @media screen and (max-width: @screen-sm-max) {
  12. .sm-margin-top {
  13. margin-top: @line-height-computed;
  14. }
  15. .sm-margin-top-half {
  16. margin-top: @line-height-computed * 0.33;
  17. }
  18. }