diff --git a/src/defaultTheme/components/atoms/prose/ProseOl.vue b/src/defaultTheme/components/atoms/prose/ProseOl.vue
index 1ef394c72..05b61441e 100644
--- a/src/defaultTheme/components/atoms/prose/ProseOl.vue
+++ b/src/defaultTheme/components/atoms/prose/ProseOl.vue
@@ -35,17 +35,10 @@ ol[type='1'] {
}
ol {
- margin-left: 0px;
- margin-right: 0px;
- padding: 0px;
- margin-top: 1.25em;
- margin-bottom: 1.25em;
- list-style-type: none;
-
+ @apply mx-0 p-0 my-[1.25em] list-none;
ul,
ol {
- margin-top: 0.5em;
- margin-bottom: 0.5em;
+ @apply my-[0.5em];
}
}
diff --git a/src/defaultTheme/components/atoms/prose/ProseStrong.vue b/src/defaultTheme/components/atoms/prose/ProseStrong.vue
index 4a761a8e7..0669cdc8c 100644
--- a/src/defaultTheme/components/atoms/prose/ProseStrong.vue
+++ b/src/defaultTheme/components/atoms/prose/ProseStrong.vue
@@ -6,19 +6,9 @@
diff --git a/src/defaultTheme/components/atoms/prose/ProseTable.vue b/src/defaultTheme/components/atoms/prose/ProseTable.vue
index faeda4500..49f5d001f 100644
--- a/src/defaultTheme/components/atoms/prose/ProseTable.vue
+++ b/src/defaultTheme/components/atoms/prose/ProseTable.vue
@@ -8,11 +8,6 @@
diff --git a/src/defaultTheme/components/atoms/prose/ProseTd.vue b/src/defaultTheme/components/atoms/prose/ProseTd.vue
index 602de4ebe..48533c3de 100644
--- a/src/defaultTheme/components/atoms/prose/ProseTd.vue
+++ b/src/defaultTheme/components/atoms/prose/ProseTd.vue
@@ -5,18 +5,7 @@
diff --git a/src/defaultTheme/components/atoms/prose/ProseUl.vue b/src/defaultTheme/components/atoms/prose/ProseUl.vue
index 23061ce3c..8da9803db 100644
--- a/src/defaultTheme/components/atoms/prose/ProseUl.vue
+++ b/src/defaultTheme/components/atoms/prose/ProseUl.vue
@@ -6,17 +6,10 @@