ReactLoading center?
Closed this issue · 1 comments
permadiwibisono commented
How to make ReactLoading's component center in div?
fakiolinho commented
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;
}