nguyenvanduocit / vue-loading-spinner

Just another collection of loading spinners with Vue.js, alot of spinners
https://nguyenvanduocit.github.io/vue-loading-spinner/
685 stars 105 forks source link

How to center on a screen and set z-index? #1

Closed donPuerto closed 7 years ago

donPuerto commented 7 years ago

Pretty awesome, how to have responsive div at the center and set z-index? Sorry not good on CSS.

this is my work around

position: fixed;
        top: 50%;
        left: 50%;
        margin-top: -80px;
        margin-left: -60px;

        z-index: 1001;

Don

nguyenvanduocit commented 7 years ago
position: fixed;
top: 50%;
left: 50%;
margin-top: transformX(-50%);
margin-left: transformY(-50%);
z-index: 1001;

Is it what you want?