Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Dec 17, 2024
1 parent 01ebe29 commit 75cce4c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion resources/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ hr {

.form-input {
@apply block w-full;
@apply border-uh-border-color focus:ring-primary-500 focus:border-primary-500 rounded;
@apply border-uh-border-color focus:ring-0 focus:border-primary-500 rounded;
@apply bg-[#f6f8fa] focus:bg-white;
}
6 changes: 3 additions & 3 deletions resources/views/backend/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
<h3 class="text-lg font-medium text-slate-900">{{ __('Edit URL Details') }}</h3>
<br>
<div class="inline sm:block mr-2 text-sm text-slate-600">
@svg('icon-person', 'mr-1')
@svg('icon-person', 'mr-1 text-slate-900')
{{ $url->author->name }}
</div>
<div class="inline sm:block text-sm text-slate-600">
@svg('icon-calendar', 'mr-1')
@svg('icon-calendar', 'mr-1 text-slate-900')
<span title="{{ $url->created_at->toDayDateTimeString() }}">{{ $url->created_at->diffForHumans() }}</span>
</div>

@if ($url->created_at != $url->updated_at)
<div class="inline sm:block text-sm text-slate-600">
@svg('icon-updated', 'mr-1 font-bold')
@svg('icon-updated', 'mr-1 font-bold text-slate-900')
<span title="{{ $url->updated_at->toDayDateTimeString() }}">{{ $url->updated_at->diffForHumans() }}</span>
</div>
@endif
Expand Down
1 change: 0 additions & 1 deletion resources/views/backend/user/changepassword.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class="form-input mt-1">
<x-icon-eye x-on:click="show=!show" ::class="{'block': !show, '!hidden': show}" />
</div>
</div>

</div>

<div class="col-span-6 lg:col-span-4">
Expand Down
4 changes: 2 additions & 2 deletions resources/views/partials/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class="nav-item">
@else
<div class="hidden sm:flex sm:items-center sm:ml-6">
<a href="{{ route('login') }}"
class="btn text-xl font-medium text-black
hover:bg-primary-50 hover:text-primary-700 hover:border-primary-700">
class="btn btn-primary text-xl font-medium
!bg-white hover:!bg-gray-200 active:!bg-gray-100">

<svg class="w-5 h-5 mr-1" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" data-slot="icon">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"></path>
Expand Down
1 change: 0 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default {
"primary-50": "#eef2ff",
"primary-100": "#e0e7ff",
"primary-500": "#6366f1",
"primary-600": "#4f46e5",
"primary-700": "#4338ca",
"primary-800": "#3730a3",
"uh-blue": "#3d5b99",
Expand Down

0 comments on commit 75cce4c

Please sign in to comment.