Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Dec 27, 2024
1 parent 76e7fcf commit 11e3efd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions resources/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ hr {
}

.btn {
@apply duration-300 inline-flex items-center px-3 py-1.5;
@apply inline-flex items-center px-3 py-1.5 duration-300 ease-out;
@apply text-base font-normal leading-6 text-center no-underline align-middle tracking-wide;
@apply border rounded-md border-gray-300 disabled:opacity-25;
@apply cursor-pointer select-none;
Expand Down Expand Up @@ -146,5 +146,9 @@ hr {
.form-input {
@apply block w-full;
@apply border-uh-border-color focus:ring-0 focus:border-primary-500 rounded;
@apply bg-[#f6f8fa] focus:bg-white;
@apply bg-gray-50 focus:bg-white;

&[disabled], &:disabled {
@apply bg-gray-300 text-gray-700 bg-opacity-50 text-opacity-50;
}
}
2 changes: 1 addition & 1 deletion resources/views/backend/user/account.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="grid grid-cols-6 gap-6">
<div class="col-span-6 lg:col-span-4">
<label class="form-label">{{ __('Username') }}</label>
<input name="name" value="{{ $user->name }}" class="form-input bg-slate-100 text-slate-700 mt-1" disabled>
<input name="name" value="{{ $user->name }}" class="form-input mt-1" disabled>
<small class="block text-red-400"><i>{{ __('Usernames cannot be changed.') }}</i></small>
</div>
<div class="col-span-6 lg:col-span-4">
Expand Down

0 comments on commit 11e3efd

Please sign in to comment.