From ea1d0cb84809d45f1c327b6e1ac99b6969f262c3 Mon Sep 17 00:00:00 2001 From: idonahue Date: Tue, 11 Jul 2023 17:58:45 +0200 Subject: [PATCH] Updated the input text focus color to purple --- src/app.postcss | 2 +- src/routes/repo/[projectId]/BranchLane.svelte | 20 ++++++++++--------- tailwind.config.cjs | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/app.postcss b/src/app.postcss index bcbb59719..c9f9d8e86 100644 --- a/src/app.postcss +++ b/src/app.postcss @@ -16,7 +16,7 @@ textarea { outline: none; @apply rounded border border-light-500 bg-white p-2 text-light-900 dark:border-dark-400 dark:bg-dark-600 dark:text-dark-100; @apply hover:border-zinc-500/80; - @apply focus:ring-2 focus:ring-blue-600; + @apply focus:ring-2 focus:ring-purple-600; } /* OUTLINE REMOVAL */ diff --git a/src/routes/repo/[projectId]/BranchLane.svelte b/src/routes/repo/[projectId]/BranchLane.svelte index ad951b2d2..66f7ace65 100644 --- a/src/routes/repo/[projectId]/BranchLane.svelte +++ b/src/routes/repo/[projectId]/BranchLane.svelte @@ -114,15 +114,15 @@ }} >
(maximized = !maximized)} - class="h-8 w-8 flex-grow-0 cursor-pointer p-2 text-light-600 dark:text-dark-200" + class="h-8 w-8 flex-grow-0 cursor-pointer p-2 text-light-600 dark:text-dark-200" >
-
+
+
+ branchController.createBranch({ order })}> Create branch before @@ -229,10 +231,10 @@ {#each localCommits as commit (commit.id)}
-
+
@@ -247,9 +249,9 @@
-
+
@@ -259,10 +261,10 @@
{#each remoteCommits as commit (commit.id)}
-
+
diff --git a/tailwind.config.cjs b/tailwind.config.cjs index f7f49397d..bc4fb37c1 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -120,7 +120,7 @@ const config = { 900: '#14532d' }, purple: { - 600: '#58529F' + 600: '#5852A0' }, orange: { 200: '#fed7aa'