c19c53161a
Chrome's html5 audio tags don't have a height and 'auto' renders them with zero height, so added a min height to address this.
23 lines
368 B
CSS
23 lines
368 B
CSS
/**
|
|
* Filters
|
|
*/
|
|
.mediaplugin {
|
|
display: block;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.mediaplugin,
|
|
.mediaplugin video {
|
|
/* Make videos as wide as possible without being wider than their containers */
|
|
width: 100vw;
|
|
max-width: 100%;
|
|
height: auto;
|
|
min-height: 32px;
|
|
}
|
|
|
|
.mediaplugin > div {
|
|
margin: auto;
|
|
}
|