Sha256: e6ecdf51461eac445a1c09891046d10b7ca3645c8bcf0c5106b05d042b34ed7d
Contents?: true
Size: 730 Bytes
Versions: 9
Compression:
Stored size: 730 Bytes
Contents
.border{ border: 1px solid color('gray'); } .border-dashed{ border: 1px dashed color('gray'); } @include colors('.border', 'border-color'){ border-width: 1px; border-style: solid; } @include colors('.border-dashed', 'border-color'){ border-width: 1px; border-style: dashed; } @each $direction in 'top' 'right' 'bottom' 'left' { @include size-rules('.border-#{$direction}'){ border-#{$direction}-color: color('gray-light') !important; border-#{$direction}-style: solid; border-#{$direction}-width: 1px; } @include colors('.border-#{$direction}', 'border-#{$direction}-color'){ border-#{$direction}-width: 1px; border-#{$direction}-style: solid; } }
Version data entries
9 entries across 9 versions & 1 rubygems