aframe-preloader-component icon indicating copy to clipboard operation
aframe-preloader-component copied to clipboard

[TODO] Change default styling to use flexbox for vertical alignment

Open UXVirtual opened this issue 8 years ago • 0 comments

This needs improving so all HTML elements inside the preloader stay vertically centered by default.

Adding something like this to the page will work in most modern browser which support flex CSS:

<style>
.modal-content {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-direction: row;
        }
</style>

UXVirtual avatar Dec 29 '17 13:12 UXVirtual