Skip to content

Commit

Permalink
payment method button styling
Browse files Browse the repository at this point in the history
  • Loading branch information
brkcvn committed Nov 2, 2022
1 parent 504c83a commit 3c3655c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/views/components/payment_method/redirect.blade.php
@@ -1,20 +1,22 @@
<div>
<div class="d-none">
<div class="hidden">
@if (!empty($setting['name']))
<h2>{{ $setting['name'] }}</h2>
@endif

@if (!empty($setting['description']))
<div class="well well-sm">{{ $setting['description'] }}</div>
<div>{{ $setting['description'] }}</div>
@endif
</div>
<br>

<div class="buttons">
<div class="pull-right">
<x-form id="redirect-form" :url="$confirm_url">
<button @click="onRedirectConfirm" type="button" id="button-confirm" class="btn disabled:bg-green-100">
{{ trans('general.confirm') }}
<button @click="onRedirectConfirm" type="button" id="button-confirm" class="relative flex items-center justify-center bg-green hover:bg-green-700 text-white px-6 py-1.5 text-base rounded-lg disabled:bg-green-100">
<span>
{{ trans('general.confirm') }}
</span>
</button>
</x-form>
</div>
Expand Down

0 comments on commit 3c3655c

Please sign in to comment.