Skip to content

Commit

Permalink
Merge pull request #40 from lewislarsen/style/various_updates
Browse files Browse the repository at this point in the history
style: Various minor styling improvements.
  • Loading branch information
lewislarsen authored Dec 29, 2024
2 parents 7a0725d + 2d4aaa1 commit 5d6208f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions resources/views/components/notice.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@
@php
$colors = [
"info" => [
"bg" => "bg-sky-50 dark:bg-sky-900/30",
"bg" => "bg-sky-50/70 dark:bg-sky-900/30",
"text" => "text-sky-900 dark:text-sky-100",
"icon" => "text-sky-500 dark:text-sky-400",
"body" => "text-sky-800 dark:text-sky-200",
],
"warning" => [
"bg" => "bg-amber-50 dark:bg-amber-900/30",
"bg" => "bg-amber-50/70 dark:bg-amber-900/30",
"text" => "text-amber-900 dark:text-amber-100",
"icon" => "text-amber-500 dark:text-amber-400",
"body" => "text-amber-800 dark:text-amber-200",
],
"success" => [
"bg" => "bg-emerald-50 dark:bg-emerald-900/30",
"bg" => "bg-emerald-50/70 dark:bg-emerald-900/30",
"text" => "text-emerald-900 dark:text-emerald-100",
"icon" => "text-emerald-500 dark:text-emerald-400",
"body" => "text-emerald-800 dark:text-emerald-200",
],
"error" => [
"bg" => "bg-rose-50 dark:bg-rose-900/30",
"bg" => "bg-rose-50/70 dark:bg-rose-900/30",
"text" => "text-rose-900 dark:text-rose-100",
"icon" => "text-rose-500 dark:text-rose-400",
"body" => "text-rose-800 dark:text-rose-200",
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/layout/navigation.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class="mr-2 inline h-5 w-5"
:active="request()->routeIs('backup-tasks.*')"
wire:navigate
>
<x-hugeicons-archive-01 class="mr-2 inline h-5 w-5" />
<x-hugeicons-archive-02 class="mr-2 inline h-5 w-5" />
{{ __('Backup Tasks') }}
</x-responsive-nav-link>
@endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ private function formatDate(Carbon $date): string
</x-slot>
<x-slot name="icon">hugeicons-user</x-slot>
<form wire:submit="updateProfileInformation" class="mt-6 space-y-6">
<div class="mt-4">
<div
class="mt-4 rounded-[0.7rem] border border-gray-200/70 bg-gray-100/20 p-3 dark:border-gray-500/40 dark:bg-gray-500/15"
>
<x-input-label for="avatar" :value="__('Avatar')" class="mb-2" />
<div class="flex flex-col sm:flex-row sm:items-center">
<div x-data="{ imageLoaded: false }" class="relative h-20 w-20">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/statistics-page.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<x-slot name="header">
{{ __('Statistics') }}
</x-slot>
<div class="py-6">
<div class="pb-6">
<div class="mx-auto max-w-7xl sm:px-6 lg:px-8">
@if (Auth::user()->backupTasks->count() === 0)
<x-no-content withBackground>
Expand Down

0 comments on commit 5d6208f

Please sign in to comment.