Skip to content

Commit

Permalink
fix(lib): replace js scoped css to class scoped css
Browse files Browse the repository at this point in the history
replace js scoped css to class scoped css
  • Loading branch information
yogakurniawan committed Jul 13, 2020
1 parent c0cbaf9 commit 8e6ab94
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions dist/vue-tel-input-vuetify.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-tel-input-vuetify.min.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/vue-tel-input-vuetify.umd.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions lib/vue-tel-input-vuetify.vue
Original file line number Diff line number Diff line change
Expand Up @@ -694,22 +694,22 @@ export default {
</script>

<style src="./sprite.css"></style>
<style lang="scss" scoped>
<style lang="scss">
.vue-tel-input-vuetify {
display: flex;
align-items: center;
}
.country-code {
width: 75px;
}
.country-code {
width: 75px;
}
li.last-preferred {
border-bottom: 1px solid #cacaca;
}
li.last-preferred {
border-bottom: 1px solid #cacaca;
}
.vti__flag {
margin-right: 5px;
margin-left: 5px;
.vti__flag {
margin-right: 5px;
margin-left: 5px;
}
}
</style>

0 comments on commit 8e6ab94

Please sign in to comment.