I've set a custom class .auth-pane
on a page in my Ionic app in order to style it with a custom background.
The CSS for the background is...
.auth-pane {
background-image: url("../img/auth-background.jpeg");
background-position: center;
background-repeat: no-repeat;
}
applied to <ion-view view-title="Auth" class="auth-pane">
Everything works just fine in Chrome (using ionic serve
), but when I build and run on device, all I see is a plain white background.
I've tried adjusting the path for the background image to
img/auth-background.jpeg
and /img/auth-background.jpeg
, neither of which have made any difference (though the absolute path does also work in Chrome).
No errors (404, etc.) are being thrown relevant to the image file, so it seems the file is being found.