HEX
Server: LiteSpeed
System: Linux premium212.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: vitanhod (1367)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/vitanhod/barnabites.es/wp-content/plugins/rishi-companion/src/public/sass/_sticky-header.scss
.rishi-header-desktop:not(.is-sticky), 
.rishi-header-mobile:not(.is-sticky) {
    [data-logo="sticky"] {
        display: none;
    }
}

.sticky-header.is-sticky{
    .sticky-row {
            position: fixed;
            top: var(--admin-bar, 0);
            left: 0;
            right: 0;
            z-index: 5;
            box-shadow: var(--stickyBoxShadow);
            animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-logo="default"] {
        display: none;
    }

    [data-logo="sticky"] {
        display: block;
    }

    [data-logo="transparent"] {
        display: none;
    }
}

.sticky-header.sticky-done{
    animation: slideDown-small 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown-small {
    from {
        transform: translateY(-10%);
    }

    to {
        transform: translateY(0);
    }
}