31 lines
556 B
SCSS
31 lines
556 B
SCSS
@use "@/assets/css/constants" as constants;
|
|
|
|
[data-component=component-drop-mask] {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: {
|
|
left: 10px;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
};
|
|
background-color: constants.$origin-color;
|
|
|
|
.drop-mask-border {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: {
|
|
width: 2px;
|
|
color: constants.$font-secondary-color;
|
|
style: dashed;
|
|
radius: 8px;
|
|
};
|
|
font-size: 1.8em;
|
|
}
|
|
}
|