parent
48a390a2bb
commit
ceebe5e4cc
|
|
@ -426,7 +426,8 @@ const root = computed(() => {
|
||||||
@include content-box-base;
|
@include content-box-base;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(p) {
|
// todo: re-add :deep() once we re-add scoped
|
||||||
|
p {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
||||||
|
|
@ -435,7 +436,8 @@ const root = computed(() => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.text-block) {
|
// todo: re-add :deep() once we re-add scoped
|
||||||
|
.text-block {
|
||||||
ul {
|
ul {
|
||||||
@include list-parent;
|
@include list-parent;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,9 +19,9 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { defineAsyncComponent } from 'vue';
|
import { defineAsyncComponent } from 'vue';
|
||||||
const SimpleFileUpload = defineAsyncComponent(() => import('@/components/ui/file-upload/SimpleFileUpload'));
|
const SimpleFileUpload = defineAsyncComponent(() => import('@/components/ui/file-upload/SimpleFileUpload.vue'));
|
||||||
const DocumentBlock = defineAsyncComponent(() =>
|
const DocumentBlock = defineAsyncComponent(() =>
|
||||||
import(/* webpackChunkName: "content-components" */ '@/components/content-blocks/DocumentBlock')
|
import(/* webpackChunkName: "content-components" */ '@/components/content-blocks/DocumentBlock.vue')
|
||||||
);
|
);
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue