Sha256: 806245840799d36a38e7530987f2bd5e573a326966d8b0312ee39e9cd4e96934
Contents?: true
Size: 781 Bytes
Versions: 1
Compression:
Stored size: 781 Bytes
Contents
// Foundation for Sites // https://get.foundation // Licensed under MIT Open Source //// /// @group prototype-rotate //// /// Rotate Mixin: Rotate an element to a certain deg /// @param {Number} $deg[] Degree of rotation @mixin rotate($deg) { transform:rotate($deg + deg); } /// RotateX Mixin: Rotate an element to a certain deg on X-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateX($deg) { transform:rotateX($deg + deg); } /// RotateY Mixin: Rotate an element to a certain deg on Y-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateY($deg) { transform:rotateY($deg + deg); } /// RotateZ Mixin: Rotate an element to a certain deg on Z-Axis /// @param {Number} $deg[] Degree of rotation @mixin rotateZ($deg) { transform:rotateZ($deg + deg); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foundation-rails-6.6.2.0 | vendor/assets/scss/prototype/_rotate.scss |