From 7dc63fa7750d1ed281abf0408f80cfc0578b79b9 Mon Sep 17 00:00:00 2001 From: shidorien Date: Sun, 7 Jan 2024 18:27:42 +0100 Subject: [PATCH] Fix tippy-box styles in index.css --- src/renderer/index.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/renderer/index.css b/src/renderer/index.css index 46612bfe..a0d20c98 100644 --- a/src/renderer/index.css +++ b/src/renderer/index.css @@ -79,21 +79,21 @@ } .tippy-box[data-theme~='default'] { - @apply !bg-neutral-900; - @apply !text-white; + @apply bg-neutral-900; + @apply text-white; } .tippy-box[data-theme~='default'][data-placement^='top'] > .tippy-arrow::before { - @apply !border-t-neutral-900 + @apply border-t-neutral-900 } .tippy-box[data-theme~='default'][data-placement^='bottom'] > .tippy-arrow::before { - @apply !border-b-neutral-900 + @apply border-b-neutral-900 } .tippy-box[data-theme~='default'][data-placement^='left'] > .tippy-arrow::before { - @apply !border-l-neutral-900 + @apply border-l-neutral-900 } .tippy-box[data-theme~='default'][data-placement^='right'] > .tippy-arrow::before { - @apply !border-r-neutral-900 + @apply border-r-neutral-900 } @keyframes glowing {