Using the below, Chrome is not respecting the media queries to display the correct video source based on the device width. Chrome is just playing the first source it finds as yo
Sorry, your browser doesn't support embedded videos. Sorry, your browser doesn't support embedded videos.
Can be done in CSS like
.desktop-video { display: grid; @include media-breakpoint-down(lg) { display: none; } } .mobile-video { display: none; @include media-breakpoint-down(lg) { display: grid; } }