Use css from parent in children

PHOTO EMBED

Wed Feb 26 2025 18:33:32 GMT+0000 (Coordinated Universal Time)

Saved by @gbritgs

//Parent
:host {
    --font-size-1: 0.625rem;
    --font-size-2: 0.75rem;
    --color-gray-9: #f203ba;
}

//Child
.header-container h3 {
    font-size: 1rem;
    color: var(--color-gray-9);
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
}
content_copyCOPY