Sha256: 9cea6db4457eb4d2b2e054e0c71d284965d5c164c025cd232e996f642065f688
Contents?: true
Size: 1.68 KB
Versions: 1
Compression:
Stored size: 1.68 KB
Contents
// Table of Contents // ================================================== // Layout // Media Queries // Layout // ================================================== .layout { height: 100%; width: 100%; } .layout-body, .layout-sidebar { @include overflow-scrolling(touch); float: left; height: 100%; overflow-x: hidden; overflow-y: auto; &.with-sticky-header { height: calc(100% - 76px); margin-top: 76px; } } .layout-body { width: 100%; } .layout-sidebar { width: 300px; &:not(.hidden) + .layout-body { width: calc(100% - 300px); } &.fixed { left: 0; position: fixed; right: 0; top: 0; z-index: 1060; + .layout-body { width: 100%; } } } // Media Queries // ================================================== @media only screen and (min-width: 960px) and (max-width: 1365px) { .layout-sidebar { width: 260px; &:not(.hidden) + .layout-body { width: calc(100% - 260px); } &.fixed + .layout-body { width: 100%; } } } @media only screen and (min-width: 768px) and (max-width: 959px) { .layout-sidebar { width: 220px; &:not(.hidden) + .layout-body { width: calc(100% - 220px); } &.fixed + .layout-body { width: 100%; } } } @media only screen and (max-width: 767px) { .layout-body { &.with-sticky-header { height: calc(100% - 54px); margin-top: 54px; &.with-sticky-navbar { height: calc(100% - 108px); } } } .layout-sidebar { max-width: 300px; width: 75%; &.with-sticky-header { height: 100%; margin-top: 0; &.with-sticky-navbar { height: 100%; } } &:not(.hidden) + .layout-body { width: calc(100% - 260px); } &.fixed + .layout-body { width: 100%; } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_frontend-16.0.14 | vendor/assets/stylesheets/components/_layout.scss |