feat: changement taille du conteneur video pour w-full
This commit is contained in:
parent
5c174ed7f3
commit
13f05006fc
|
|
@ -5,14 +5,13 @@
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
@if(!isLoading() && asset()){
|
@if(!isLoading() && asset()){
|
||||||
<div class="videocontainer">
|
<div class="videocontainer w-full">
|
||||||
<video width="320" height="240" controls>
|
<video class="w-full" controls>
|
||||||
<source src="{{asset()!.items[3].href}}" type="video/mp4">
|
<source src="{{asset()!.items[3].href}}" type="video/mp4">
|
||||||
Your browser does not support the video tag.
|
Your browser does not support the video tag.
|
||||||
</video>
|
</video>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
@if(!isLoading() && !asset()){
|
@if(!isLoading() && !asset()){
|
||||||
<p>Impossible de charger la vidéo.</p>
|
<p>Impossible de charger la vidéo.</p>
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue