1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // 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;
- }
- }
- // top margin utils
- @media screen and (min-width: @screen-md-min) {
- .md-margin-top-no {
- margin-top: 0px !important;
- }
- }
- @media screen and (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
- .sm-margin-top {
- margin-top: @line-height-computed !important;
- }
-
- .sm-margin-top-no {
- margin-top: 0px !important;
- }
- .sm-margin-top-half {
- margin-top: @line-height-computed * 0.33 !important;
- }
- .sm-align-row-buttons {
- margin-top: @line-height-computed * 0.25 !important;
- }
- }
- @media screen and (max-width: @screen-xs-max) {
- .xs-margin-top {
- margin-top: @line-height-computed !important;
- }
- .xs-margin-top-half {
- margin-top: @line-height-computed * 0.33 !important;
- }
- }
|