Skip to content

Commit d5b3c27

Browse files
committed
fixed deprecated bg-opacity
1 parent 5b8a466 commit d5b3c27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

layouts/hub-billing/single.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h2 class="font-headline font-medium text-xl md:text-2xl leading-snug mb-4 mt-12
175175
</button>
176176

177177
<div x-show="subscriptionData.restartModal.open" class="relative z-10" aria-labelledby="restart-modal-title" role="dialog" aria-modal="true">
178-
<div class="fixed inset-0 bg-gray-500 bg-opacity-75"></div>
178+
<div class="fixed inset-0 bg-gray-500/75"></div>
179179
<div class="fixed z-10 inset-0 overflow-y-auto">
180180
<div class="flex items-end md:items-center justify-center min-h-full p-4 text-center md:p-0">
181181
<div class="relative rounded-sm shadow-sm bg-white text-left overflow-hidden md:my-8 md:max-w-lg md:w-full">
@@ -218,7 +218,7 @@ <h3 class="font-headline text-xl md:text-2xl leading-relaxed mb-4" id="restart-m
218218
</div>
219219

220220
<div x-show="subscriptionData.changeSeatsModal.open" class="relative z-10" aria-labelledby="change-seats-modal-title" role="dialog" aria-modal="true">
221-
<div class="fixed inset-0 bg-gray-500 bg-opacity-75"></div>
221+
<div class="fixed inset-0 bg-gray-500/75"></div>
222222
<div class="fixed z-10 inset-0 overflow-y-auto">
223223
<div class="flex items-end md:items-center justify-center min-h-full p-4 text-center md:p-0">
224224
<div class="relative rounded-sm shadow-sm bg-white text-left overflow-hidden md:my-8 md:max-w-lg md:w-full">

layouts/partials/hub-managed-low-quantity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div x-show="{{ .isOpen }}" class="relative z-10" aria-labelledby="quantity-one-modal-title" role="dialog" aria-modal="true" x-cloak>
2-
<div x-show="{{ .isOpen }}" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity"></div>
2+
<div x-show="{{ .isOpen }}" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="fixed inset-0 bg-gray-500/75 transition-opacity"></div>
33

44
<div class="fixed z-10 inset-0 overflow-y-auto">
55
<div class="flex items-end md:items-center justify-center min-h-full p-4 text-center md:p-0">

0 commit comments

Comments
 (0)