From a3bc847aa6e069269189c6cfa6a47fe10a40df1a Mon Sep 17 00:00:00 2001 From: Reuben Ellis Date: Mon, 26 Feb 2024 16:57:04 -0700 Subject: [PATCH 1/2] update to pink --- src/stories/button.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/button.css b/src/stories/button.css index c22098c..09e45e7 100644 --- a/src/stories/button.css +++ b/src/stories/button.css @@ -9,7 +9,7 @@ } .storybook-button--primary { color: white; - background-color: olivedrab; + background-color: pink; } .storybook-button--secondary { color: #333; From 49bd5f6fcc03ea656ffcf6324c1e0a3f06d88caa Mon Sep 17 00:00:00 2001 From: Reuben Ellis Date: Mon, 26 Feb 2024 17:08:01 -0700 Subject: [PATCH 2/2] update story --- src/stories/Button.stories.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/Button.stories.tsx b/src/stories/Button.stories.tsx index 359b565..868e99a 100644 --- a/src/stories/Button.stories.tsx +++ b/src/stories/Button.stories.tsx @@ -39,7 +39,7 @@ export const Large: Story = { // This story might not be needed. export const Small: Story = { args: { - size: 'small', + size: 'medium', label: 'Button', }, };