plus star spread arrow style
Showing
1 changed file
with
6 additions
and
10 deletions
@@ -152,19 +152,15 @@ | @@ -152,19 +152,15 @@ | ||
152 | float: right; | 152 | float: right; |
153 | 153 | ||
154 | .icon { | 154 | .icon { |
155 | - -webkit-transition: -webkit-transform .1s ease-in; | ||
156 | - -moz-transition: -moz-transform .1s ease-in; | ||
157 | - -ms-transition: -ms-transform .1s ease-in; | ||
158 | - -o-transition: -o-transform .1s ease-in; | ||
159 | - transition: transform .1s ease-in; | 155 | + display: inline-block; |
156 | + height: 100%; | ||
157 | + width: 40rem / $pxConvertRem; | ||
158 | + @include transition(transform .1s ease-in) | ||
160 | } | 159 | } |
161 | 160 | ||
162 | &.spread .icon { | 161 | &.spread .icon { |
163 | - -webkit-transform: scale(0.83) rotate(-180deg); | ||
164 | - -moz-transform: scale(0.83) rotate(-180deg); | ||
165 | - -ms-transform: scale(0.83) rotate(-180deg); | ||
166 | - -o-transform: scale(0.83) rotate(-180deg); | ||
167 | - transform: scale(0.83) rotate(-180deg); | 162 | + @include rotate(-180deg); |
163 | + @include scale(0.83); | ||
168 | } | 164 | } |
169 | } | 165 | } |
170 | 166 |
-
Please register or login to post a comment