58 lines
1.1 KiB
SCSS
58 lines
1.1 KiB
SCSS
@import "../common/PredefinedMixins.scss";
|
|
@import "./partial.scss";
|
|
@import "./Variables.scss";
|
|
|
|
.tp-overlay-screen {
|
|
@include partial-column-center;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
z-index: 10001;
|
|
background-color: $tp_overlay_bg;
|
|
|
|
.tp-container {
|
|
@include partial-unselectable;
|
|
background-color: $tp_bg;
|
|
min-width: 282px;
|
|
height: auto;
|
|
padding: 32px 16px 0;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
|
|
.tp-car {
|
|
@include partial-row-center;
|
|
height: auto;
|
|
position: relative;
|
|
|
|
.tp-mark {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 54px;
|
|
border-radius: 12px;
|
|
background: $tp_mark;
|
|
}
|
|
|
|
.tp-sep {
|
|
color: $tp_sep;
|
|
font-size: 24px;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.tp-buttons {
|
|
@include partial-row-center-end;
|
|
width: 100%;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
background-color: inherit;
|
|
cursor: pointer;
|
|
gap: 8px;
|
|
}
|
|
}
|
|
} |