|
// reset
|
html,body {
|
margin: 0;
|
color: $PRIMARY_BLACK;
|
font-family: Segoe UI;
|
scroll-behavior: smooth;
|
height: 100%;
|
overflow-x: hidden;
|
}
|
|
// btn
|
.btn {
|
padding: 10px 20px;
|
@include btn;
|
}
|
|
.confirm_btn {
|
padding: 10px 40px;
|
@include btn;
|
}
|
|
.outline_btn {
|
padding: 10px 20px;
|
border-radius: 30px;
|
color: $PRIMARY_RED;
|
border: solid 2px;
|
|
&:hover {
|
color: $PRIMARY_RED;
|
background-color: $PRIMARY_WHITE;
|
}
|
|
&:focus {
|
background-color: $CORAL;
|
}
|
|
&:disabled {
|
background-color: $LIGHT_GREY;
|
}
|
}
|
|
.pam-cus-tabs {
|
display: flex;
|
width: 100%;
|
height: 45px;
|
|
.cus-tab-item {
|
@extend .fix-chrome-click--issue;
|
width: 50%;
|
text-align: center;
|
font-size: 24px;
|
border-bottom: solid 3px $LIGHT_GREY;
|
cursor: pointer;
|
}
|
|
.is-active {
|
font-weight: bold;
|
border-bottom: solid 3px $PRIMARY_BLACK;
|
|
}
|
}
|
|
.vue-scroll-picker {
|
height: 250px;
|
|
.vue-scroll-picker-list-rotator {
|
.vue-scroll-picker-item {
|
font-size: 20px;
|
padding: 5px 0;
|
}
|
}
|
|
.vue-scroll-picker-layer {
|
.top {
|
height: calc(50% - 1.2em);
|
}
|
.bottom {
|
height: calc(50% - 1.2em);
|
}
|
}
|
|
}
|
|
.pam-clientReserved-input.el-input--suffix {
|
.el-input__inner {
|
border-radius: 30px;
|
}
|
|
.search {
|
line-height: 40px;
|
padding-right: 10px;
|
}
|
}
|