diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.css b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.css index 73b24935..1027a0cd 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.css +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.css @@ -22,9 +22,6 @@ * http://opensource.org/licenses/MIT */ - .custom-class { - min-height: 0px !important; - } /** * OT Base styles @@ -38,9 +35,7 @@ padding: 0; border: 0; font-size: 100%; - font-family: 'Ubuntu', sans-serif; vertical-align: baseline; - transition: all .1s linear; } .OT_dialog-centering { @@ -220,9 +215,11 @@ .OT_publisher, .OT_subscriber { position: relative; - min-width: 48px; - min-height: 48px; + min-width: 0px; + min-height: 0px; margin: 1px; + transition-duration: 0.1s; + transition-timing-function: ease-in-out; } .OT_publisher .OT_video-element, @@ -231,20 +228,10 @@ position: absolute; width: 100%; height: 100%; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; } - /* Styles that are applied when the video element should be mirrored */ - .OT_publisher.OT_mirrored .OT_video-element { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); - -webkit-transform-origin: 50% 50%; - transform-origin: 50% 50%; - } - .OT_subscriber_error { background-color: #000; color: #fff; diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.html b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.html index cdf2de43..ca9c8403 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.html +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/layout/layout.component.html @@ -1,7 +1,6 @@