From 555d64e965794ea644fcb5bb7e319d187402a226 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Mon, 5 Jul 2021 00:20:39 +0200 Subject: [PATCH] mod button style --- resources/css/buttons.css | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/resources/css/buttons.css b/resources/css/buttons.css index 2f412dd7..59d4d3f1 100644 --- a/resources/css/buttons.css +++ b/resources/css/buttons.css @@ -1,8 +1,5 @@ .btn { - @apply px-3 py-2 uppercase no-underline text-sm text-white items-center justify-center bg-primary-700 rounded; - svg { - - } + @apply px-3 py-2 uppercase no-underline text-sm items-center justify-center bg-primary-700 rounded; &.btn-sm { @apply text-xs px-2 py-1; @@ -11,15 +8,15 @@ } } &.btn-primary { - @apply bg-primary-700; + @apply bg-primary-700 text-primary-300; &:hover { - @apply bg-primary-500; + @apply bg-primary-500 text-primary-100; } } &.btn-primary-light { - @apply bg-primary-600 text-primary-800; + @apply bg-primary-600 text-primary-200; &:hover { - @apply bg-primary-500 text-primary-700; + @apply bg-primary-500 text-primary-100; } } &.btn-warning { @@ -42,19 +39,13 @@ } &.label { - @apply rounded-full leading-none transition-all normal-case; - &.primary { - @apply bg-primary-800 text-primary-500; - &:hover { - @apply text-primary-400 bg-primary-700; - } - } + @apply py-0 h-6 flex justify-center items-center rounded-full leading-none transition-all normal-case; } &.icon { @apply p-0 flex justify-center items-center w-6 h-6; svg { - @apply w-3 h-3 text-primary-100 flex-none; + @apply w-3 h-3 flex-none; } } }