Skip to content

Commit

Permalink
Bump 2.0.0-alpha.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed May 26, 2018
1 parent 6c162dc commit 8559ab0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-bulma-switch",
"version": "2.0.0-alpha.5",
"version": "2.0.0-alpha.6",
"description": "Switch component for Vue Bulma",
"main": "src/Switch.vue",
"peerDependencies": {
Expand Down
13 changes: 8 additions & 5 deletions src/Switch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,12 @@ export default {
</script>

<style lang="scss">
@import '~bulma/sass/utilities/_all';
@import '~bulma/sass/utilities/initial-variables';
@import '~bulma/sass/utilities/functions';
@import '~bulma/sass/utilities/derived-variables';
.switch {
--height: $size-normal;
--height: #{$size-normal};
input {
opacity: 0;
Expand Down Expand Up @@ -197,13 +199,14 @@ export default {
// Sizes
&.is-small {
--height: $size-small;
--height: #{$size-small};
}
&.is-medium {
--height: $size-medium;
--height: #{$size-medium};
}
&.is-large {
--height: $size-large;
--height: #{$size-large};
}
}
</style>

0 comments on commit 8559ab0

Please sign in to comment.