Sha256: 4ac3746478f3e9c386cacfd5df6900b4e6c6256d4aadb3942049f51772a5fbf3
Contents?: true
Size: 701 Bytes
Versions: 11
Compression:
Stored size: 701 Bytes
Contents
// Fixed-width, centered column for site content. // This will be deprecated and replaced with container-lg in future .container { width: $container-width; margin-right: auto; margin-left: auto; @include clearfix; } // Handy container styles that match our breakpoints // 768px .container-md { max-width: $container-md; margin-right: auto; margin-left: auto; @include clearfix; } // 1004px - this matches the current fixed width: 980px + padding: px-3 .container-lg { max-width: $container-lg; margin-right: auto; margin-left: auto; @include clearfix; } // 1280px .container-xl { max-width: $container-xl; margin-right: auto; margin-left: auto; @include clearfix; }
Version data entries
11 entries across 11 versions & 1 rubygems