From 2a1263abeb74c214be945bee3578aba9f2334c1d Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sun, 14 Jan 2024 01:35:47 -0300 Subject: [PATCH] frontend: apply style to '.markdown' --- twenty-frontend/src/css/main.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/twenty-frontend/src/css/main.scss b/twenty-frontend/src/css/main.scss index 730ed13..68342e7 100644 --- a/twenty-frontend/src/css/main.scss +++ b/twenty-frontend/src/css/main.scss @@ -40,3 +40,19 @@ body { @extend .no-underline; } } + +.markdown { + h1, h2, h3, h4, h5, h6, h7 { + margin: 0 !important; + @extend .pt-3; + @extend .pb-3; + } + + p, + ul, + ul li, + input[type='checkbox'] { + margin: 0 !important; + padding: 0 !important; + } +}