thaw 0.4.8

An easy to use leptos component library
Documentation
.thaw-card-header {
    display: flex;
    align-items: center;

    --thaw-card-header--gap: 12px;
}

.thaw-card-header__header {
    flex-grow: 1;
    display: flex;
}

.thaw-card-header__action {
    margin-left: var(--thaw-card-header--gap);
}

.thaw-card-header--description {
    display: grid;
    grid-auto-columns: min-content 1fr min-content;
}

.thaw-card-header--description .thaw-card-header__header {
    grid-row-start: 1;
    grid-column-start: 2;
}

.thaw-card-header__description {
    grid-row-start: 2;
    grid-column-start: 2;
    display: flex;
}

.thaw-card-header--description .thaw-card-header__action {
    grid-column-start: 3;
    grid-row-start: span 2;
}