* fix: Improve media background image * Simplify loading spinner. This is slightly less fancy, but removes code. I'm guessing no-one will notice or care enough to raise it! (BMFW).
11 lines
266 B
SCSS
11 lines
266 B
SCSS
$bg-img: url('../images/camera-iris-transparent.svg');
|
|
|
|
:host {
|
|
background-color: var(--primary-background-color);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-image: $bg-img;
|
|
background-size: 10%;
|
|
background-position: center;
|
|
}
|