Sha256: f97e6a5fa2b84621850d62353493a1a8ccb94f2132faf9fbea89bb4d6bf4d3b0
Contents?: true
Size: 507 Bytes
Versions: 3
Compression:
Stored size: 507 Bytes
Contents
@import "variable"; @mixin flex($direction: row, $justify: normal, $align: normal, $wrap: nowrap) { display: flex; flex-direction: $direction; justify-content: $justify; align-items: $align; flex-wrap: $wrap; } @mixin font($size: $t3-text, $color: $primary-text-clr, $weight: normal) { font-size: $size; font-weight: $weight; color: $color; } @mixin transition-linear { transition: all .2s linear; } @mixin white-rgba($opacity: 0.3) { background: rgba(255, 255, 255, $opacity); }
Version data entries
3 entries across 3 versions & 1 rubygems