From 1eff1788b70706bc253fdabe743677bc26d5ce48 Mon Sep 17 00:00:00 2001 From: WaDadidou Date: Wed, 18 Dec 2024 12:18:37 -0500 Subject: [PATCH] fix(articles): Show border on article content input --- .../ArticleContentEditor/ArticleContentEditor.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/screens/FeedNewArticle/components/ArticleContentEditor/ArticleContentEditor.tsx b/packages/screens/FeedNewArticle/components/ArticleContentEditor/ArticleContentEditor.tsx index 2ca5cc294..931749db0 100644 --- a/packages/screens/FeedNewArticle/components/ArticleContentEditor/ArticleContentEditor.tsx +++ b/packages/screens/FeedNewArticle/components/ArticleContentEditor/ArticleContentEditor.tsx @@ -20,7 +20,12 @@ import { articleMd as md, } from "@/utils/feed/markdown"; import { ARTICLE_MAX_WIDTH } from "@/utils/social-feed"; -import { neutral00, neutralA3, neutralFF } from "@/utils/style/colors"; +import { + neutral00, + neutral33, + neutralA3, + neutralFF, +} from "@/utils/style/colors"; import { layout, RESPONSIVE_BREAKPOINT_S } from "@/utils/style/layout"; import { NewArticleFormValues } from "@/utils/types/feed"; @@ -110,7 +115,7 @@ export const ArticleContentEditor: FC = ({ width }) => { }, windowWidth >= RESPONSIVE_BREAKPOINT_S && { borderWidth, - borderColor: isTextInputHovered ? neutralFF : neutral00, + borderColor: isTextInputHovered ? neutralFF : neutral33, }, ]} >