custom label classname ejected

This commit is contained in:
Burak Civan 2022-06-17 15:02:51 +03:00
parent e69037d61f
commit 949a24d541
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
@if (! $hideFooter)
<div class="{{ $classFooter }}">
<x-form.group.textarea name="footer" label="{{ trans('general.footer') }}" :value="$footer" not-required rows="7" />
<x-form.group.textarea name="footer" label="{{ trans('general.footer') }}" class="h-full" :value="$footer" not-required rows="7" />
</div>
@endif

View File

@ -5,7 +5,7 @@
<x-slot name="content">
<div class="form-group mb-0">
<select name="lang" id="lang" size="14" class="w-full form-control-label">
<select name="lang" id="lang" size="14" class="w-full text-black text-sm font-medium">
@foreach (language()->allowed() as $code => $name)
<option value="{{ $code }}" @if ($code=='en-GB' ) {{ 'selected="selected"' }} @endif>{{ $name }}</option>
@endforeach