From 5323b6153f283aadee589e137c9471c8c377d5c3 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 21 Mar 2019 00:42:57 +0000 Subject: [PATCH] Update colour class names --- public/index.html | 2 +- src/App.vue | 12 ++-- .../Application/ApplicationCard.vue | 12 ++-- .../ApplicationDisplaySwitcher.vue | 6 +- src/components/Application/StarToggle.vue | 2 +- src/components/Environment/ActionCards.vue | 58 +++++++++---------- .../Environment/EnvironmentCards.vue | 18 +++--- src/components/Environment/QuickHelp.vue | 8 +-- .../Environment/TaskLog/TaskLog.vue | 2 +- .../Environment/TaskLog/TaskLogItem.vue | 12 ++-- src/components/Environment/ToggleHelp.vue | 4 +- src/components/HeaderButtons.vue | 4 +- src/components/Navbar.vue | 10 ++-- src/components/Sidebar.vue | 10 ++-- src/components/TitleBlock.vue | 4 +- src/views/Applications.vue | 2 +- src/views/Environment.vue | 26 ++++----- src/views/Environments.vue | 8 +-- 18 files changed, 100 insertions(+), 100 deletions(-) diff --git a/public/index.html b/public/index.html index db7b8f7..1f3f4fb 100644 --- a/public/index.html +++ b/public/index.html @@ -7,7 +7,7 @@ Rebuilding Acquia - + diff --git a/src/App.vue b/src/App.vue index 361232b..c1ed107 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,29 +18,29 @@ h2 { } .btn { - @apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-3; + @apply text-sm font-thin antialiased text-white px-4 py-3 no-underline rounded mx-1 bg-blue-300; &:hover, &:focus { - @apply bg-blue-4 + @apply bg-blue-400 } } .btn.is-secondary { - @apply bg-grey-5; + @apply bg-grey-500; &:hover, &:focus { - @apply bg-grey-6 + @apply bg-grey-600 } } .tag { - @apply text-2xs uppercase py-1 px-2 rounded border border-grey-4 bg-white mr-2 mb-2 + @apply text-2xs uppercase py-1 px-2 rounded border border-grey-400 bg-white mr-2 mb-2 } .tag.is-type { - @apply bg-blue-1 border-blue-1 text-white + @apply bg-blue-100 border-blue-100 text-white } @tailwind utilities; diff --git a/src/components/Application/ApplicationCard.vue b/src/components/Application/ApplicationCard.vue index 8e5e41b..c856cef 100644 --- a/src/components/Application/ApplicationCard.vue +++ b/src/components/Application/ApplicationCard.vue @@ -1,14 +1,14 @@