File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " vue-bulma-switch" ,
3- "version" : " 2.0.0-alpha.5 " ,
3+ "version" : " 2.0.0-alpha.6 " ,
44 "description" : " Switch component for Vue Bulma" ,
55 "main" : " src/Switch.vue" ,
66 "peerDependencies" : {
Original file line number Diff line number Diff line change @@ -120,10 +120,12 @@ export default {
120120 </script >
121121
122122<style lang="scss">
123- @import ' ~bulma/sass/utilities/_all' ;
123+ @import ' ~bulma/sass/utilities/initial-variables' ;
124+ @import ' ~bulma/sass/utilities/functions' ;
125+ @import ' ~bulma/sass/utilities/derived-variables' ;
124126
125127.switch {
126- --height : $size-normal ;
128+ --height : #{ $size-normal } ;
127129
128130 input {
129131 opacity : 0 ;
@@ -197,13 +199,14 @@ export default {
197199
198200 // Sizes
199201 & .is-small {
200- --height : $size-small ;
202+ --height : #{ $size-small } ;
201203 }
202204 & .is-medium {
203- --height : $size-medium ;
205+ --height : #{ $size-medium } ;
204206 }
205207 & .is-large {
206- --height : $size-large ;
208+ --height : #{ $size-large } ;
207209 }
210+
208211}
209212 </style >
You can’t perform that action at this time.
0 commit comments