25 lines
403 B
SCSS
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%;
|
|
}
|