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/wpwatermates_err/wp-content/plugins/chaty/src/scss/layouts/_steps.scss
.chaty-header {
    
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 25px;

    @include mobile {
        padding: 10px 15px;
    }

    .chaty-app-tabs {
        padding: 0 30px;
    }

    li {
        @apply w-full;
        align-self: normal;

        a::after {
            content: '';
            height: 2px;
            position: absolute;
            top: 22px;
            z-index: 0;
            @apply bg-cht-gray-150/40;
        }

        a:is(.active, .completed) {
            &::after {
                @apply bg-cht-primary;
            }

            .chaty-tabs-subheading {
                @apply text-cht-primary;
            }
        }

        &:nth-child(1) {
            a {
                &::after {
                    width: 50%;
                    right: 0;
                }
            }
        }

        &:nth-child(2) {
            a {
                &::after {
                    width: 100%;
                    right: 0;
                }
            }
        }

        &:nth-child(3) {
            a {
                &::after {
                    width: 50%;
                    left: 0;
                }
            }
        }
    }

    .chaty-tab {
        @apply font-primary text-cht-gray-150 relative pt-10 bg-white inline-block w-full px-4 rounded-lg text-center h-full;
        font-size: 14px;
        padding-bottom: 7px;

        &::before {
            display: inline-block;
            width: 1.9rem;
            content: '';
            height: 1.9rem;
            margin-bottom: 0.125rem;
            border: 5px solid #fff;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            z-index: 1;
            transform: translate(-50%, -33px);
            background-color: #83a1b7;
        }

        &.active {
            @apply text-cht-primary
        }

        &:is(.active, .completed)::before {
            @apply bg-cht-primary
        }

        &:hover {
            @apply bg-cht-primary/20
        }
    }
}