diff --git a/resources/css/app.css b/resources/css/app.css index c1e8f3259..ee4ec7b77 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -53,12 +53,14 @@ .icon:hover { @apply text-white; } .box { - @apply flex items-center p-2 transition-colors cursor-pointer min-h-16 bg-coolgray-200 hover:bg-coollabs-100 hover:text-white hover:no-underline min-w-[24rem]; + @apply flex p-2 transition-colors cursor-pointer min-h-16 bg-coolgray-200 hover:bg-coollabs-100 hover:text-white hover:no-underline min-w-[24rem]; } .box-without-bg { - @apply flex items-center p-2 transition-colors min-h-16 hover:text-white hover:no-underline min-w-[24rem]; + @apply flex p-2 transition-colors min-h-16 hover:text-white hover:no-underline min-w-[24rem]; +} +.description { + @apply pt-2 text-xs font-bold text-neutral-500 group-hover:text-white; } - .lds-heart { animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); } diff --git a/resources/views/livewire/dashboard.blade.php b/resources/views/livewire/dashboard.blade.php index 7ceb40d7a..2e79582e1 100644 --- a/resources/views/livewire/dashboard.blade.php +++ b/resources/views/livewire/dashboard.blade.php @@ -15,7 +15,8 @@ @endif @if ($projects->count() === 0 && $servers->count() === 0) - No resources found. Add your first server / private key here. + No resources found. Add your first server / private key here. @endif @if ($projects->count() > 0)