Skip to content

Commit

Permalink
Merge branch 'v3' into v3-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Pagebakers committed Jan 28, 2025
2 parents f1aa5b1 + 6a8bf46 commit 250da91
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/hungry-berries-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@saas-ui/react': patch
---

Decreased default overlay translucency
5 changes: 5 additions & 0 deletions .changeset/polite-rings-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@saas-ui/react': patch
---

Fix dialog backdrop z-index
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const dialogSlotRecipe = defineSlotRecipe({
top: 0,
w: '100vw',
h: '100dvh',
zIndex: 'calc(var(--dialog-z-index) + var(--layer-index, 0) - 1)',
zIndex: 'calc(var(--z-index) - 1)',
_open: {
animationName: 'fade-in',
animationDuration: 'slow',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const drawerSlotRecipe = defineSlotRecipe({
top: 0,
w: '100vw',
h: '100dvh',
zIndex: 'calc(var(--drawer-z-index) + var(--layer-index, 0) - 1)',
zIndex: 'calc(var(--z-index) - 1)',
_open: {
animationName: 'fade-in',
animationDuration: 'slow',
Expand Down
2 changes: 1 addition & 1 deletion packages/saas-ui-react/src/theme/global-css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const globalCss = defineGlobalStyles({
// '--radius-indicator': '1',
'--radius-full': '9999px',
'--scale-factor': '1',
'--overlay-translucency': '90%',
'--overlay-translucency': '95%',
'--overlay-effect': 'blur({blurs.lg})',
'--backdrop-effect': 'none',
},
Expand Down

0 comments on commit 250da91

Please sign in to comment.