fakiolinho/react-loading

ReactLoading center?

Closed this issue · 1 comments

How to make ReactLoading's component center in div?

Since the wrapping element is a div (so display: block; by default), you can add let's say a .preloader class:

<ReactLoading
  className="preloader"
  type="balls"
  color="#444"
/>

and then add some styling rules like:

.preloader {
  margin: 0 auto;
}