Skip to content

Commit

Permalink
Image library: small css fix (#703)
Browse files Browse the repository at this point in the history
  • Loading branch information
robsontenorio authored Nov 12, 2024
1 parent ea59606 commit 2a7938b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/View/Components/ImageLibrary.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class="hidden"
<!-- PROGRESS BAR -->
@if(! $hideProgress && $slot->isEmpty())
<div class="h-1 -mt-2 mb-2">
<div>
<progress
x-cloak
:class="!processing && 'hidden'"
Expand All @@ -212,7 +212,7 @@ class="progress progress-success h-1 w-full"></progress>
@endif
<!-- ADD FILES -->
<div @click="$refs.files.click()" class="btn btn-block mt-2" :class="(processing || indeterminate) && 'opacity-50 pointer-events-none'">
<div @click="$refs.files.click()" class="btn btn-block" :class="(processing || indeterminate) && 'opacity-50 pointer-events-none'">
<x-mary-icon name="o-plus-circle" label="{{ $addFilesText }}" />
</div>
Expand Down

0 comments on commit 2a7938b

Please sign in to comment.