diff --git a/assets/scss/styles.scss b/assets/scss/styles.scss index 0dfc67663..81058f050 100644 --- a/assets/scss/styles.scss +++ b/assets/scss/styles.scss @@ -33,6 +33,10 @@ @apply h-4; } +.hide-scrollbar::-webkit-scrollbar { + @apply hidden; +} + ::selection { @apply bg-accent; @apply text-primary; @@ -214,17 +218,8 @@ input[type="checkbox"] { } } -.error:not(input), -.disabled:not(input), -[disabled] { - @apply bg-error; - @apply text-secondaryLight; - @apply fill-current; - @apply cursor-not-allowed; -} - .info-response { - @apply text-yellow-400; + @apply text-pink-400; } .success-response { @@ -232,7 +227,7 @@ input[type="checkbox"] { } .redir-response { - @apply text-pink-400; + @apply text-yellow-400; } .cl-error-response { diff --git a/assets/scss/themes.scss b/assets/scss/themes.scss index 1347a0d9e..0537952e6 100644 --- a/assets/scss/themes.scss +++ b/assets/scss/themes.scss @@ -41,7 +41,7 @@ // Text color --secondary-color: theme("colors.gray.600"); // Light Text color - --secondary-light-color: theme("colors.gray.500"); + --secondary-light-color: theme("colors.gray.400"); // Dark Text color --secondary-dark-color: theme("colors.gray.700"); // Border color diff --git a/components/app/Header.vue b/components/app/Header.vue index 814e8641d..6de341137 100644 --- a/components/app/Header.vue +++ b/components/app/Header.vue @@ -1,5 +1,5 @@