Sha256: 6ceab7c37c17fe101cda52e51349837cf70da6b1bc415c5468ad2c834cba9314
Contents?: true
Size: 579 Bytes
Versions: 8
Compression:
Stored size: 579 Bytes
Contents
@mixin pre($padding: 1rem) { margin-left: -1rem; margin-right: -1rem; padding: $padding; background-color: $code-bg; @media print { width: 100%!important; page-break-inside: avoid; break-inside: avoid-page; } } @mixin aspect-ratio($width, $height) { position: relative; &::before { display: block; content: ""; width: 100%; padding-top: ($height / $width) * 100%; } > * { position: absolute; top: 0; left: 0; right: 0; bottom: 0; } } @mixin clearfix() { content: ""; display: table; clear: both; }
Version data entries
8 entries across 8 versions & 1 rubygems