Sha256: ee9afa071064b01c81d7e3855e79868e7fe5a70243a9734fef40b2d5dbaac133
Contents?: true
Size: 381 Bytes
Versions: 4
Compression:
Stored size: 381 Bytes
Contents
// Sets the max width of a container and centers it by setting margin-left and // margin-right to auto. The max width can be overridden by defining $max-width. // A left and right padding of 12px is added by default. @mixin outer-container($padding: 12px) { margin-left: auto; margin-right: auto; max-width: $max-width; padding-left: $padding; padding-right: $padding; }
Version data entries
4 entries across 4 versions & 2 rubygems