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

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

The newest version!
.n2o-spinner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

    &.loading {
        pointer-events: none;
    }

    .spinner-background {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: $spinner-background-cover-color;
        z-index: 10;
    }

    .n2o-spinner-container {
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 50%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy