Skip to content

Commit

Permalink
Use scoped CSS.
Browse files Browse the repository at this point in the history
By using scoped CSS, we make sure the test components are isolated properly.
  • Loading branch information
lvonlanthen committed Jun 24, 2022
1 parent 2252c53 commit 615f9ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/examples/Move.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default {
}
</script>

<style>
<style scoped>
.absolute {
position: absolute;
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/examples/MoveOnMouseUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default {
}
</script>

<style>
<style scoped>
.absolute {
position: absolute;
margin: 0;
Expand Down

0 comments on commit 615f9ce

Please sign in to comment.