Fix tailwindcss warnings

This commit is contained in:
eikek
2024-03-10 21:24:44 +01:00
parent 247fc1d4e9
commit 67284d1f6a
2 changed files with 28 additions and 39 deletions

View File

@ -24,13 +24,10 @@
z-index: 35; z-index: 35;
} }
@variants responsive {
.min-h-7 { .min-h-7 {
min-height: 1.75rem; min-height: 1.75rem;
} }
}
.scrollbar-none { .scrollbar-none {
-ms-overflow-style: none; /* IE and Edge */ -ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */ scrollbar-width: none; /* Firefox */
@ -47,7 +44,6 @@
width: 8px; width: 8px;
} }
@variants dark {
.scrollbar-dark-sidebar { .scrollbar-dark-sidebar {
scrollbar-color: rgba(15,23,42,0.9) rgba(15,23,42,0.3); scrollbar-color: rgba(15,23,42,0.9) rgba(15,23,42,0.3);
} }
@ -78,7 +74,6 @@
.scrollbar-main::-webkit-scrollbar-thumb { .scrollbar-main::-webkit-scrollbar-thumb {
background: rgba(156, 163, 175, 0.9); background: rgba(156, 163, 175, 0.9);
} }
}
.ds-card-search-hl strong { .ds-card-search-hl strong {
@apply bg-lime-200 dark:bg-sky-700 italic font-bold px-1 bg-opacity-60 dark:bg-opacity-60; @apply bg-lime-200 dark:bg-sky-700 italic font-bold px-1 bg-opacity-60 dark:bg-opacity-60;

View File

@ -19,12 +19,6 @@ module.exports = {
} }
} }
}, },
variants: {
extend: {
backgroundOpacity: ['dark']
}
},
purge: false,
plugins: [ plugins: [
require('@tailwindcss/forms') require('@tailwindcss/forms')
] ]