Skip to content

Commit

Permalink
refactor: 버튼 padding 수정, storybook global scss 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
sikkzz committed Jan 31, 2025
1 parent cca32f7 commit 2505048
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .storybook/preview.module.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
body {
max-width: initial;
}

.Wrapper {
display: flex;
flex-flow: row wrap;
Expand Down
2 changes: 2 additions & 0 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import type { Preview } from "@storybook/react";

import "@/styles/reset.scss";
import "@/styles/global.scss";
import styles from "./preview.module.scss";

const preview: Preview = {
Expand Down
1 change: 1 addition & 0 deletions src/components/ui/BaseButton/BaseButton.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
border-radius: 0.875rem;
width: 100%;
height: 3.25rem;
padding: 0.875rem;
}
1 change: 1 addition & 0 deletions src/components/ui/IconButton/IconButton.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
&.size-sm {
gap: 0.125rem;
height: 2.375rem;
padding: 0.5rem 0.875rem;
background-color: var(--color-text01);
color: var(--color-white);
border-radius: 0.75rem;
Expand Down

0 comments on commit 2505048

Please sign in to comment.