Skip to content

Commit

Permalink
chore: storybook에 ui css 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sohee-K committed May 27, 2024
1 parent 4c12b68 commit dd4ab2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 74 deletions.
11 changes: 6 additions & 5 deletions apps/docs/.storybook/preview.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Preview } from "@storybook/react";

import '../src/index.css';
import "../src/index.css";
import "@sopt-makers/ui/dist/index.css";

const preview: Preview = {
parameters: {
Expand All @@ -11,12 +12,12 @@ const preview: Preview = {
date: /Date$/i,
},
},
layout: 'centered',
layout: "centered",
backgrounds: {
default: 'dark', // 기본 배경을 'dark'로 설정
default: "dark", // 기본 배경을 'dark'로 설정
values: [
{ name: 'dark', value: "#0F1012" }, // 'dark' 배경의 색상을 검정색으로 지정
{ name: 'white', value: '#ffffff' }
{ name: "dark", value: "#0F1012" }, // 'dark' 배경의 색상을 검정색으로 지정
{ name: "white", value: "#ffffff" },
],
},
},
Expand Down
69 changes: 0 additions & 69 deletions apps/docs/stories/page.css

This file was deleted.

0 comments on commit dd4ab2d

Please sign in to comment.