Brhav

Results 4 comments of Brhav

See https://github.com/videogular/videogular2/issues/818

The problem is probably related to https://stackoverflow.com/a/4816050/11701481. The icon of vg-mute is set with a class (see vg-mute.ts). The condition for this class is the volume of the video element,...

Workaround for correct mute icon: Add following classes ``` vg-mute.volume_off { ::ng-deep .icon:before { content: "\e032"; } } vg-mute.volume_up { ::ng-deep .icon:before { content: "\e033"; } } ``` Use following...

Try adding the following class: .mat-dialog-content--scrollbar-fix { &:after { content: " "; display: block; height: 10px; }