Fix embed margin in share modal

pull/4795/head
Chocobozzz 2022-02-08 11:14:33 +01:00
parent 0e00f894c6
commit 612dd3c3f5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 4 additions and 3 deletions

View File

@ -55,7 +55,7 @@
The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
</div>
<div [innerHTML]="playlistEmbedHTML"></div>
<div class="embed" [innerHTML]="playlistEmbedHTML"></div>
</div>
</ng-template>
</ng-container>
@ -122,7 +122,7 @@
The url is not secured (no HTTPS), so the embed video won't work on HTTPS websites (web browsers block non secured HTTP requests on HTTPS websites).
</div>
<div [innerHTML]="videoEmbedHTML"></div>
<div class="embed" [innerHTML]="videoEmbedHTML"></div>
</div>
</ng-template>
</ng-container>

View File

@ -29,7 +29,8 @@ my-input-toggle-hidden {
flex-direction: column;
}
.alert {
.alert,
.embed {
margin-top: 20px;
}