viewy 2.0.6

A web UI toolkit that combine the advantages of a design system and an ui library.
.view {
    box-sizing: border-box;
    &.clickable {
        cursor: pointer;
        & > label {
            cursor: pointer;
        }
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        transition: background 150ms;
        &:hover {
            background: var(--color-hover);
        }
        &:active {
            background: var(--color-active);
        }
    }
    &.shadow {
        filter: contrast(20%) grayscale(100%) brightness(140%);
    }
}