Skip to content

Commit

Permalink
fix: change text color of plus button to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
lunikai committed Apr 23, 2024
1 parent d2a4cb7 commit e5e695d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/web/src/components/molecules/ModalInnerTextBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ const TextButton: React.FC<SubmitProps> = ({
}}
/>
<Button w={20} h={20} onClick={onSubmit}>
<Text css={[colors.blue600, text.boldtitle2, "line-height: 1"]}>+</Text>
<Text
css={[`color: ${colors.blue600}`, text.boldtitle2, "line-height: 1"]}
>
+
</Text>
</Button>
</BorderedBox>
);
Expand Down

0 comments on commit e5e695d

Please sign in to comment.