Merge pull request #1550 from talkor/align-buttons

fix: align buttons
This commit is contained in:
Kavin 2022-10-10 10:25:04 +01:00 committed by GitHub
commit ab2b3a25c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ b {
} }
.btn { .btn {
@apply h-full py-2 lt-md:px-2 md:px-4 rounded cursor-pointer; @apply py-2 lt-md:px-2 md:px-4 rounded cursor-pointer inline-block;
} }
.reset { .reset {

View file

@ -74,7 +74,7 @@
<!-- Verified Badge --> <!-- Verified Badge -->
<font-awesome-icon class="ml-1" v-if="video.uploaderVerified" icon="check" /> <font-awesome-icon class="ml-1" v-if="video.uploaderVerified" icon="check" />
</div> </div>
<div class="flex relative ml-auto children:mx-1"> <div class="flex relative ml-auto children:mx-1 items-center">
<button class="btn" v-if="authenticated" @click="showModal = !showModal"> <button class="btn" v-if="authenticated" @click="showModal = !showModal">
{{ $t("actions.add_to_playlist") }}<font-awesome-icon class="ml-1" icon="circle-plus" /> {{ $t("actions.add_to_playlist") }}<font-awesome-icon class="ml-1" icon="circle-plus" />
</button> </button>