Full screen not to scale

You can also use Custom CSS to change the way the background scales.

The default scaling is ‘cover’ which effectively scales the image to cover the whole space while maintaining the aspect ratio. You could change the scaling however you see fit - here’s a reference showing various scaling options:

So the Custom CSS could be something like:

#app > .background-image img {
  object-fit: fill;
}