From 7f2586e44e8d43b007ed5d6ecfb4343865a15ab2 Mon Sep 17 00:00:00 2001 From: SeongMin Kim <86355699+Collection50@users.noreply.github.com> Date: Wed, 11 Sep 2024 01:09:58 +0900 Subject: [PATCH] =?UTF-8?q?fix(editor):=20=EC=BD=94=EB=93=9C=20=EB=B8=94?= =?UTF-8?q?=EB=9F=AD=EC=9D=B4=20=EB=B0=B0=ED=8F=AC=20=ED=99=98=EA=B2=BD?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EA=B9=A8=EC=A7=80=EB=8A=94=20=EC=9D=B4?= =?UTF-8?q?=EC=8A=88=20=ED=95=B4=EA=B2=B0=20(#84)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix * fix --- src/styles/editors/code.css | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/styles/editors/code.css b/src/styles/editors/code.css index 0e520612..2781c4d3 100644 --- a/src/styles/editors/code.css +++ b/src/styles/editors/code.css @@ -1,22 +1,22 @@ .ProseMirror { p > code { - @apply caret-[gray] text-[gray] rounded-sm shadow-sm font-mono bg-orange-100 p-4; + @apply !caret-[gray] !text-[gray] !rounded-sm !shadow-sm !font-mono !bg-orange-100 !p-4; } pre { - @apply caret-white bg-black text-white rounded my-12 p-4 border border-black; + @apply !caret-white !bg-black !text-white !rounded !my-12 !border !border-black !p-20; *::selection { - @apply bg-white/20; + @apply !bg-white/20; } code { - @apply p-0 shadow-none; + @apply !p-0 !shadow-none; } .hljs-comment, .hljs-quote { - @apply text-white; + @apply !text-white; } .hljs-variable, @@ -29,7 +29,7 @@ .hljs-name, .hljs-selector-id, .hljs-selector-class { - @apply text-[red]; + @apply !text-[red]; } .hljs-number, @@ -39,35 +39,35 @@ .hljs-literal, .hljs-type, .hljs-params { - @apply text-[orange]; + @apply !text-[orange]; } .hljs-string, .hljs-symbol, .hljs-bullet { - @apply text-[lime]; + @apply !text-[lime]; } .hljs-title, .hljs-section { - @apply text-[yellow]; + @apply !text-[yellow]; } .hljs-attr { - @apply text-[teal]; + @apply !text-[teal]; } .hljs-keyword, .hljs-selector-tag { - @apply text-[teal]; + @apply !text-[teal]; } .hljs-emphasis { - font-style: italic; + font-style: italic !important; } .hljs-strong { - font-weight: 700; + font-weight: 700 !important; } } }