All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sass.n2o.components.RangeField.scss Maven / Gradle / Ivy

The newest version!
.n2o-range-field-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    .n2o-range-field-controls-container {
        flex-grow: 1;
    }
}

.n2o-range-field-body--divider {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        left: calc(50% - 5px);
        top: 50%;
        width: 10px;
        height: 2px;
        background: $gray-300;
    }
}

.n2o-range-field-item {
    flex-grow: 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy