Skip to content

Commit

Permalink
fix(articles): Show border on article content input
Browse files Browse the repository at this point in the history
  • Loading branch information
WaDadidou committed Dec 18, 2024
1 parent 9c42f45 commit 1eff178
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -110,7 +115,7 @@ export const ArticleContentEditor: FC<Props> = ({ width }) => {
},
windowWidth >= RESPONSIVE_BREAKPOINT_S && {
borderWidth,
borderColor: isTextInputHovered ? neutralFF : neutral00,
borderColor: isTextInputHovered ? neutralFF : neutral33,
},
]}
>
Expand Down

0 comments on commit 1eff178

Please sign in to comment.