Sha256: c4edd6306ec562a8ee44c58df7f2a8187276123495bdaf10be4a0ca7a9bf38b9
Contents?: true
Size: 604 Bytes
Versions: 4
Compression:
Stored size: 604 Bytes
Contents
// rotating + flipping icons // ------------------------- .@{fa-css-prefix}-rotate-90 { transform: rotate(90deg); } .@{fa-css-prefix}-rotate-180 { transform: rotate(180deg); } .@{fa-css-prefix}-rotate-270 { transform: rotate(270deg); } .@{fa-css-prefix}-flip-horizontal { transform: scale(-1, 1); } .@{fa-css-prefix}-flip-vertical { transform: scale(1, -1); } .@{fa-css-prefix}-flip-both, .@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical { transform: scale(-1, -1); } .@{fa-css-prefix}-rotate-by { transform: rotate(~'var(--@{fa-css-prefix}-rotate-angle, none)'); }
Version data entries
4 entries across 4 versions & 1 rubygems