Modificadas las funciones del backend, y ajustado el tamaño de los videos embebidos en la noticia

This commit is contained in:
2021-07-19 15:44:08 -03:00
parent f8393623c2
commit e687d9ada1
5 changed files with 40 additions and 9 deletions

View File

@@ -97,4 +97,12 @@ article {
figcaption {
color: #797979;
margin-bottom: 3vh;
}
iframe {
/*! RELACIÓN 16:9 ENTRE ANCHO Y ALTO, EL CONTENIDO TIENE 56 VW DE ANCHO. POR LO TANTO, EL ALTO DEBE SER DE 32 VW PARA QUE EL VIDEO EMBEBIDO TENGA EL TAMAÑO ADECUADO PARA EL RATO 16:9*/
width: 100% !important;
height: 32vw !important;
border: none;
}