Skip to content

Commit

Permalink
♻️ refactor: storiesファイル内で使用しているbutton要素のカラーを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
takashi0602 committed Jan 4, 2024
1 parent eddc589 commit 1eb013d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/base/Textarea/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ export const Textarea: Story = {
<BaseTextarea errors={errors} id="description" register={register} />
</dd>
</dl>
<button type="submit">Submit</button>
<button style={{ color: 'white' }} type="submit">
Submit
</button>
</form>
);
},
Expand Down
4 changes: 3 additions & 1 deletion src/components/base/Textbox/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ export const Textbox: Story = {
<BaseTextbox errors={errors} id="title" register={register} />
</dd>
</dl>
<button type="submit">Submit</button>
<button style={{ color: 'white' }} type="submit">
Submit
</button>
</form>
);
},
Expand Down

0 comments on commit 1eb013d

Please sign in to comment.