diff --git a/packages/design-system/theme/src/common/popup.scss b/packages/design-system/theme/src/common/popup.scss index da91b42151..d82c1246a0 100644 --- a/packages/design-system/theme/src/common/popup.scss +++ b/packages/design-system/theme/src/common/popup.scss @@ -12,20 +12,16 @@ @keyframes v-modal-in { 0% { opacity: 0; - backdrop-filter: blur(4px) opacity(0); } 100% { - backdrop-filter: blur(4px) opacity(1); } } @keyframes v-modal-out { 0% { - backdrop-filter: blur(4px) opacity(1); } 100% { opacity: 0; - backdrop-filter: blur(4px) opacity(0); } } @@ -36,7 +32,6 @@ width: 100%; height: 100%; background-color: var.$popup-modal-background-color; - backdrop-filter: blur(4px) opacity(1); } @include mixins.b(popup-parent) {