HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/smarthr-co-in/demo/react/assets/scss/layout/_common.scss
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 50px !important;
}
::-webkit-scrollbar-track {
    background: $light-500;
}
::-webkit-scrollbar-thumb {
    background: $gray-200;
}
::-webkit-scrollbar-thumb:hover {
    background: $gray-200;
}
.swal2-header{
    .swal2-title{
        font-size: $font-size-18;
    }
}
.checkboxs {
    display: block;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 25px;
    input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
}
.checkboxs input ~ .checkmarks {
    border: 1px solid $light-900;
    border-radius: 2px;
}
.checkboxs input:checked ~ .checkmarks {
    background-color: $primary;
    border-color: $primary;
    &:after {
        display: block;
    }
}
.checkboxs .checkmarks {
    height: 18px;
    width: 18px;
    position: absolute;
    top: 2px;
    left: 0;
    &::after {
        content: "";
        position: absolute;
        display: none;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        content: "\f00c";
        font-family: 'Font Awesome 5 Free';
        color: $white;
        font-weight: $font-weight-semibold;
        font-size: 10px;
    }
}