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/AdminUI/Button/style.scss
.givewp-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    border-radius: var(--givewp-rounded-4);
    cursor: pointer;
    border: 1px solid transparent;

    > span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 1rem;

        > svg {
            display: block;
        }
    }

    &.primary {
        color: var(--givewp-shades-white);
        background: var(--wp-blue-blue-50, #2271b1);

        &:hover {
            background-color: var(--wp-blue-blue-60, #135e96);
        }

        &:active {
            background-color: var(--wp-blue-blue-50, #2271b1);
        }
    }

    &.secondary {
        background: var(--givewp-shades-white);
        color: var(--givewp-grey-900);
        border-color: var(--givewp-grey-900);

        &:hover {
            color: var(--givewp-blue-700);
            border-color: var(--givewp-blue-700);
        }

        &:active {
            color: var(--givewp-blue-700);
            border-color: var(--givewp-blue-700);
        }
    }

    &.danger {
        background-color: var(--givewp-red-500);
        color: var(--givewp-shades-white);
        border-color: var(--givewp-red-500);

        &:hover {
            background-color: var(--givewp-red-400);
        }

        &:active {
            background-color: var(--givewp-red-600);
        }
    }

    &.small {
        padding: var(--givewp-spacing-2) var(--givewp-spacing-4);
    }

    &.large {
        padding: var(--givewp-spacing-3) var(--givewp-spacing-20);
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
        height: 3rem;
    }

    &:disabled {
        background-color: var(--givewp-grey-300) !important;
        color: var(--givewp-shades-white);
        border-color: var(--givewp-grey-300);
    }

}