dev #19

Merged
Michilis merged 4 commits from dev into main 2026-06-04 23:37:16 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit ecd2a7d009 - Show all commits

View File

@@ -127,11 +127,11 @@
}
.ProseMirror ul {
@apply list-disc list-inside my-3;
@apply list-disc list-outside pl-6 my-3;
}
.ProseMirror ol {
@apply list-decimal list-inside my-3;
@apply list-decimal list-outside pl-6 my-3;
}
.ProseMirror li {

View File

@@ -127,12 +127,12 @@ export default function LegalPageLayout({
),
// Style lists
ul: ({ children }) => (
<ul className="list-disc list-inside space-y-2 mb-4 text-gray-700 ml-4">
<ul className="list-disc list-outside space-y-2 mb-4 text-gray-700 pl-6">
{children}
</ul>
),
ol: ({ children }) => (
<ol className="list-decimal list-inside space-y-2 mb-4 text-gray-700 ml-4">
<ol className="list-decimal list-outside space-y-2 mb-4 text-gray-700 pl-6">
{children}
</ol>
),