22 lines
383 B
SCSS
22 lines
383 B
SCSS
@use 'media-layout.scss';
|
|
|
|
:host {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
/* Don't drop shadow or have radius for nested webrtc card */
|
|
#webrtc ha-card {
|
|
border-radius: 0px;
|
|
background-color: unset;
|
|
|
|
// To get the WebRTC player to line up correctly with some themes.
|
|
margin: 0px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#webrtc #video {
|
|
@include media-layout.media-layout();
|
|
}
|