toggle-corp/react-store

View on GitHub
components/Input/SimpleListInput/styles.scss

Summary

Maintainability
Test Coverage

.list-input {
    display: flex;
    flex-direction: column;
    overflow: auto;

    .label {
        flex-shrink: 0;
        margin-bottom: var(--spacing-small);
    }

    .list {
        flex-grow: 1;
        overflow: auto;
    }

    .hint-and-error {
        flex-shrink: 0;
    }
}