Files
bodyshop/client/src/components/upsell/upsell.styles.scss
2025-08-08 10:23:09 -04:00

25 lines
403 B
SCSS

.mask-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-height: 100px; /* Adjust as needed */
}
.mask-content {
background-color: var(--mask-content-bg);
pointer-events: none;
}
.mask-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
}
.mask-overlay .ant-card {
max-width: 100%;
}