From fca18152169c67c5f54f51dc22b511e522dee4f0 Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Sun, 27 Oct 2024 11:25:55 +0100 Subject: [PATCH 1/6] Apply tailwind shadow to .box class Makes .box elements appear raised above the background. Only works in light mode! --- resources/css/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/app.css b/resources/css/app.css index 00a62a131..55d8d95f8 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -217,7 +217,7 @@ tr td:first-child { } .box { - @apply relative flex lg:flex-row flex-col p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 bg-white border text-black dark:text-white hover:text-black border-neutral-200 dark:border-black hover:bg-neutral-100 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline; + @apply relative flex lg:flex-row flex-col p-2 transition-colors cursor-pointer min-h-[4rem] dark:bg-coolgray-100 shadow bg-white border text-black dark:text-white hover:text-black border-neutral-200 dark:border-black hover:bg-neutral-100 dark:hover:bg-coollabs-100 dark:hover:text-white hover:no-underline; } .box-boarding { From a35e2f427bb077f0ab563c44e62de4eb21175b5b Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Sun, 27 Oct 2024 12:10:07 +0100 Subject: [PATCH 2/6] Fix inconsistent navbar padding "Coolify" had pl-3 while the SwitchTeam element and the menu items below had px-2 --- resources/views/components/navbar.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/components/navbar.blade.php b/resources/views/components/navbar.blade.php index 93dd72f8e..460b9350b 100644 --- a/resources/views/components/navbar.blade.php +++ b/resources/views/components/navbar.blade.php @@ -46,7 +46,7 @@ } } }"> -
+
Coolify
From f073d01a5f819ad209f6d78ee3ccd7c5fa436113 Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Sun, 27 Oct 2024 12:24:34 +0100 Subject: [PATCH 3/6] Give more space to navbar Especially in full width and mobile view, the navbar looked cramped because there was very little padding to the left end of the screen. This commit adds horizontal padding to the navbar and increases its width from 48 to 56 tailwind units. --- resources/views/components/navbar.blade.php | 2 +- resources/views/layouts/app.blade.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/views/components/navbar.blade.php b/resources/views/components/navbar.blade.php index 460b9350b..2f908fc81 100644 --- a/resources/views/components/navbar.blade.php +++ b/resources/views/components/navbar.blade.php @@ -1,4 +1,4 @@ -