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/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_wallet.scss
/*============================
    41. Wallet
============================*/

@use "../utils/mixins" as *;
@use '../variables' as *;

.wallet-item {
    padding: 24px;
    border-radius: 6px;
    background: $darkmode-dark;
    .card-number {
        margin-bottom: 20px;
        h5 {
            color: $darkmode-white;
        }
        .badge {
            padding: 4px;
            background: $success;
        }
    }
    p {
        color: $darkmode-white;
    }
}
.wallet-item-two {
    .tab-head {
        font-size: 14px;
        font-weight: $font-weight-semibold;
        margin-bottom: 4px;
    }
    .nav.nav-tabs {
        border: none;
        .nav-item {
            display: inline-flex;
            align-items: center;
            margin-right: 10px;
            position: relative;
            input {
                width: 16px;
                height: 16px;
            }
            .nav-link {
                border: none;
                padding-left: 8px;
                color: $gray-500;
                font-size: 14px;
                &:active {
                color: $gray-900;
                }
            }
        }
    }
}
.profile-image-wrap {
    position: relative;
    width: fit-content;
    .upload-profile {
        display: none;
    }
    .edit-icon {
        position: absolute;
        bottom: 10px;
        right: 0;
        display: inline-flex;
        align-items: center;
        justify-items: center;
        background: $dark;
        color: $white;
        border-radius: 50%;
        padding: 4px;
        font-size: 14px;
        box-shadow: $box-shadow;
        cursor: pointer;
    }
}
.address-radio {
    width: 16px;
    height: 16px;
    margin-right: 20px;
}
.delete-icon {
    padding: 16px;
    background: $danger-100;
    color: $danger;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.file-upload {
    border: 1px dashed $border-color;
    border-radius: 5px;
    text-align: center;
    position: relative;
    input {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }
    &.drag-file {
        height: 120px;
        background: $light;
    }
}