Skip to content

Commit df5171e

Browse files
committed
More tweaks
1 parent 805cb9b commit df5171e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

resources/views/components/faq-element.blade.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<div
22
class="bg-base-100 rounded-2xl shadow-xs hover:shadow overflow-hidden"
33
>
4-
<button class="flex justify-between items-center w-full px-6 py-4 text-left focus:outline-none" data-animate="collapse" data-target="#{{ $id }}">
5-
<span class="text-xl font-medium">{{ $question }}</span>
6-
<svg class="w-5 h-5 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
4+
<button class="flex justify-between items-center w-full gap-2 px-6 py-4 text-left focus:outline-none" data-animate="collapse" data-target="#{{ $id }}">
5+
<span class="text-lg font-medium">{{ $question }}</span>
6+
<svg class="flex-none w-5 h-5 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
77
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
88
</svg>
99
</button>
1010

11-
<div id="{{ $id }}" class="hidden px-6 pb-4">
11+
<div id="{{ $id }}" class="hidden px-6 pb-4 text-neutral-content">
1212
{!! $answer !!}
1313
</div>
1414

resources/views/settings/subscription/faq.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<section id="faq" class="max-w-4xl mx-auto py-16 px-4">
2-
<h2 class="text-3xl font-bold text-center mb-12">{{ __('subscriptions/faq.title') }}</h2>
2+
<h2 class="text-center mb-12">{{ __('subscriptions/faq.title') }}</h2>
33

44
<div class="space-y-4">
55

0 commit comments

Comments
 (0)