HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah_err/wp-content/plugins/give/src/Views/Components/Modal/styles.module.scss
@import '../colors';

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.container {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.modal {
    display: block;
    max-width: 600px;
    max-height: calc(100% - 2rem);
    overflow-y: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-top: 10px solid $info;
    pointer-events: auto;
    box-shadow: 0 3px 6px rgba(68, 68, 68, 0.8), 0 3px 6px rgba(68, 68, 68, 0.8);
}

.content {
    font-size: 16px;
    padding: 20px;
    position: relative;
}

.innerContent {
    padding: 20px 0;
}

.textLeft {
    text-align: left;
}

.textRight {
    text-align: right;
}

.textCenter {
    text-align: center;
}

.title {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.closeIconContainer {
    position: absolute;
    right: 20px;
    top: 15px;
}

.close {
    cursor: pointer;
    span {
        font-size: 30px;
        color: #d3d3d3;
    }
}

.section {
    margin-bottom: 25px;

    strong {
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
    }
}

.errorDetailsContainer {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px 20px;
    height: auto;
    min-height: 40px;
    max-height: 500px;
    overflow-x: auto;
    font-size: 15px;

    span {
        font-weight: 600;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    pre {
        white-space: break-spaces;
    }
}

.error {
    border-top-color: $error;
}

.warning {
    border-top-color: $warning;
}

.success {
    border-top-color: $success;
}

.http {
    border-top-color: $http;
}