toggle-corp/react-store

View on GitHub
components/View/RawTable/Headers/Header/styles.scss

Summary

Maintainability
Test Coverage
.header {
    position: sticky;
    top: 0;
    border-bottom: var(--width-separator-thin) solid var(--color-separator);
    background-color: var(--color-foreground);
    padding: 0;
    text-transform: uppercase;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-normal);

    &:not(:last-child) {
        border-right: var(--width-separator-thin) solid var(--color-separator);
    }

    &.disabled {
        color: var(--color-text-disabled);
    }
}