Skip to content

Commit

Permalink
Merge branch 'main' into chore/update-docs-site-to-react-18
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack authored Jun 20, 2023
2 parents 3ec3ada + 295c4bc commit 3316c6b
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 26 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-bats-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": patch
---

Fix `Dialog2` backdrop color variable
2 changes: 1 addition & 1 deletion .github/workflows/release-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Schedule
on:
workflow_dispatch:
schedule:
- cron: '0 16 * * MON'
- cron: '0 0 * * TUE'

concurrency:
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }}
Expand Down
50 changes: 26 additions & 24 deletions examples/nextjs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Backdrop = styled('div')`
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.4);
background-color: ${get('colors.primer.canvas.backdrop')};
animation: dialog-backdrop-appear ${ANIMATION_DURATION} ${get('animation.easeOutCubic')};
@keyframes dialog-backdrop-appear {
Expand Down

0 comments on commit 3316c6b

Please sign in to comment.