保誠-保戶業務員媒合平台
Mila
2021-11-04 7c9f9647fbc4ebb671cb297743b21322eda0fde3
PAMapp/assets/scss/_common.scss
@@ -0,0 +1,64 @@
// reset
html,body {
    margin: 0;
    color: $PRIMARY_BLACK;
    font-family: Segoe UI;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
h5 {
    margin: 0;
}
// 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 {
        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;
    }
}