fix scoped styles

This commit is contained in:
Philipp Kühn
2021-03-18 00:01:28 +01:00
parent 375bb15dc1
commit 8949191895
2 changed files with 30 additions and 28 deletions

View File

@@ -30,7 +30,7 @@ export default {
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.vue-component { .vue-component {
border: 1px solid #adb5bd; border: 1px solid #adb5bd;
border-radius: 0.5rem; border-radius: 0.5rem;

View File

@@ -25,7 +25,8 @@ export default {
} }
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
::v-deep {
/* Basic editor styles */ /* Basic editor styles */
.ProseMirror { .ProseMirror {
> * + * { > * + * {
@@ -59,4 +60,5 @@ export default {
color: #495057; color: #495057;
} }
} }
}
</style> </style>