feat: changement taille du conteneur video pour w-full

This commit is contained in:
maxime 2026-04-09 11:47:31 +02:00
parent 5c174ed7f3
commit 13f05006fc
1 changed files with 2 additions and 3 deletions

View File

@ -5,14 +5,13 @@
</div>
}
@if(!isLoading() && asset()){
<div class="videocontainer">
<video width="320" height="240" controls>
<div class="videocontainer w-full">
<video class="w-full" controls>
<source src="{{asset()!.items[3].href}}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
}
@if(!isLoading() && !asset()){
<p>Impossible de charger la vidéo.</p>
}