axonyx-ui 0.0.48

Foundry CSS, JavaScript helpers, and Axonyx-native .ax components for Axonyx UI.
Documentation
.ax-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ax-space-md);
    padding: var(--ax-space-sm) 0;
}

.ax-navbar__brand,
.ax-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ax-navbar__brand {
    color: var(--ax-text);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.ax-navbar__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.ax-nav-link {
    color: var(--ax-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.ax-nav-link:hover,
.ax-nav-link[data-active='true'] {
    color: var(--ax-text);
}

.ax-footer {
    display: grid;
    gap: var(--ax-space-md);
    padding: var(--ax-space-xl) 0;
    border-top: 1px solid var(--ax-border);
    color: var(--ax-text-muted);
}

.ax-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.ax-footer__links a {
    color: inherit;
    text-decoration: none;
}

.ax-footer__links a:hover {
    color: var(--ax-text);
}

@media (max-width: 720px) {
    .ax-navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ax-navbar__links {
        justify-content: flex-start;
    }
}