Skip to content

Commit

Permalink
Remove kumulos-silent-overlay class usage
Browse files Browse the repository at this point in the history
  • Loading branch information
krobd committed Oct 29, 2021
1 parent 3862bcc commit fa52327
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/prompts/background-mask.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ body.kumulos-background-mask-blur {
}

.kumulos-background-mask-blur
> *:not(.kumulos-prompt):not(.kumulos-overlay):not(.kumulos-silent-overlay):not(.kumulos-background-mask) {
> *:not(.kumulos-prompt):not(.kumulos-overlay):not(.kumulos-background-mask) {
filter: blur(3px);
}

Expand Down
5 changes: 2 additions & 3 deletions src/prompts/overlay.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.kumulos-overlay-blur > *:not(.kumulos-overlay):not(.kumulos-silent-overlay) {
.kumulos-overlay-blur > *:not(.kumulos-overlay) {
filter: blur(3px);
}

.kumulos-overlay,
.kumulos-silent-overlay {
.kumulos-overlay {
box-sizing: border-box;

*,
Expand Down
2 changes: 1 addition & 1 deletion src/prompts/overlay/push-perms-silent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class OverlaySilent extends Component<
return (
<BackgroundMask
blurClass="kumulos-overlay-blur"
class={`kumulos-silent-overlay kumulos-silent-overlay-${getBrowserName()}`}
class={`kumulos-overlay kumulos-overlay-${getBrowserName()}`}
style={maskStyle}
onClick={this.onBackgroundMaskClick}
>
Expand Down

0 comments on commit fa52327

Please sign in to comment.