From 748cae797fa2dd26f98700732e4027d6645bcab3 Mon Sep 17 00:00:00 2001 From: Thiago Lewin Date: Fri, 15 Sep 2023 17:22:39 +0200 Subject: [PATCH] Fix property case at contents.css MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following warning: ``` ▲ [WARNING] "overflow-X" is not a known CSS property [unsupported-css-property] node_modules/@toast-ui/editor/dist/toastui-editor.css:962:2: 962 │ overflow-X: hidden; │ ~~~~~~~~~~ ╵ overflow-x Did you mean "overflow-x" instead? ``` --- apps/editor/src/css/contents.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/editor/src/css/contents.css b/apps/editor/src/css/contents.css index c5c53dc628..38a812a5bc 100644 --- a/apps/editor/src/css/contents.css +++ b/apps/editor/src/css/contents.css @@ -11,7 +11,7 @@ color: #222; font-size: 13px; overflow-y: auto; - overflow-X: hidden; + overflow-x: hidden; height: calc(100% - 36px); }