This is how you can hide the preloader on all devices:
.preloader { display: none; }
This how you can hide the preloader only on smaller devices:
@media only screen and (max-width: 1024px) { .preloader { display: none; } }
INFO: This is a CSS snippet. If you don’t have a child theme or don’t know how to use one, we recommend that you add this snippet in Customize > Additional CSS.