12 lines
334 B
SCSS
12 lines
334 B
SCSS
// Use the outlined Iris logo since the background color is unknown.
|
|
$bg-img: url('../images/iris-background.svg');
|
|
|
|
:host {
|
|
background-color: var(--advanced-camera-card-background);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-image: $bg-img;
|
|
background-size: 10%;
|
|
background-position: center;
|
|
}
|