Skip to content

Commit

Permalink
fix(dialog): backdrop overlay color opacity (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgonzalezr committed Jul 18, 2023
1 parent f09c765 commit fcf8f48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{
matchPackageNames: ['@jscutlery/semver'],
allowedVersions: '<2.30.0',
}
},
{
groupName: '@nxext',
matchPackagePrefixes: ['@nxext'],
Expand Down Expand Up @@ -75,7 +75,7 @@
{
matchPackageNames: ['ngx-deploy-npm'],
allowedVersions: '<6.0.0',
}
},
{
groupName: 'nx',
matchPackagePrefixes: ['@nrwl', 'nx'],
Expand All @@ -90,7 +90,6 @@
groupName: 'prettier',
matchPackagePrefixes: ['prettier'],
},

{
groupName: 'stylelint',
matchPackagePrefixes: ['stylelint'],
Expand All @@ -111,7 +110,7 @@
{
matchPackageNames: ['zone.js'],
allowedVersions: '<0.13.0',
}
},
/**
* Do not renovate peerDependencies versions/ranges.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/bee-q/src/components/dialog/scss/bq-dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}

.bq-dialog[open]::backdrop {
@apply opacity-50;
@apply opacity-60;
}

/* ------------------------------ Dialog header ----------------------------- */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/

--bq-dialog--background: theme('colors.bg.primary');
--bq-dialog--background-backdrop: theme('colors.grey.600');
--bq-dialog--background-backdrop: theme('colors.grey.900');

--bq-dialog--box-shadow: theme('boxShadow.l');

Expand Down

0 comments on commit fcf8f48

Please sign in to comment.