Skip to content

Commit

Permalink
change: remove sb build
Browse files Browse the repository at this point in the history
  • Loading branch information
troychaplin committed Oct 25, 2023
2 parents fc240c2 + b98c324 commit 897c406
Show file tree
Hide file tree
Showing 187 changed files with 1,298 additions and 4,723 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Storybook Deploy
on:
push:
branches:
- develop # if any push happens on branch `develop`, run this workflow. You could also add `paths` to detect changes in specific folder
- develop
jobs:
build-and-deploy:
name: Build and deploy Storybook
Expand All @@ -14,18 +14,16 @@ jobs:
uses: actions/checkout@v3

- name: Install
run: npm install --frozen-lockfile
# run: npm ci
run: npm ci

- name: Build
run: npm run build-storybook
# run: npm run build-storybook
run: npm run build-storybook
env:
NODE_OPTIONS: --max_old_space_size=4096

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: storybook-static # output folder from `npm run build-storybook`
folder: storybook-static

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dist-ssr
*.local

# Editor directories and files
storybook-static
.vscode/*
!.vscode/extensions.json
.idea
Expand Down
36 changes: 36 additions & 0 deletions .storybook/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -986,3 +986,39 @@ form > :not([hidden]) ~ :not([hidden]) {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}

.\[\&\>div\]\:rounded-md>div {
border-radius: 0.375rem;
}

.\[\&\>div\]\:border>div {
border-width: 1px;
}

.\[\&\>div\]\:border-cu-black-200>div {
--tw-border-opacity: 1;
border-color: rgb(204 204 204 / var(--tw-border-opacity));
}

.\[\&\>div\]\:py-0\.5>div {
padding-top: 0.125rem;
padding-bottom: 0.125rem;
}

.\[\&\>div\]\:pl-1\.5>div {
padding-left: 0.375rem;
}

.\[\&\>div\]\:pr-0\.5>div {
padding-right: 0.125rem;
}

.\[\&\>div\]\:placeholder\:text-cu-black-400>div::-moz-placeholder {
--tw-text-opacity: 1;
color: rgb(153 153 153 / var(--tw-text-opacity));
}

.\[\&\>div\]\:placeholder\:text-cu-black-400>div::placeholder {
--tw-text-opacity: 1;
color: rgb(153 153 153 / var(--tw-text-opacity));
}
Loading

0 comments on commit 897c406

Please sign in to comment.