🆙 Tailwind v4 100% 🆙

This commit is contained in:
Remco
2026-01-29 14:38:31 +01:00
parent d987de29b3
commit df765557f3
12 changed files with 164 additions and 59 deletions
+15 -2
View File
@@ -1,10 +1,18 @@
@reference;
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.dropdown-item {
@apply w-full text-left px-2 py-1 transition duration-200 ease-in-out text-sm hover:bg-[#8770b2];
width: 100%;
text-align: left;
padding: 0.5rem 0.5rem;
transition: all 200ms ease-in-out;
font-size: 0.875rem;
&:hover {
background-color: #8770b2;
}
}
}
@@ -21,11 +29,16 @@ body {
}
img {
// stylelint-disable-next-line property-no-unknown
-webkit-user-drag: none;
// stylelint-disable-next-line property-no-unknown
-khtml-user-drag: none;
// stylelint-disable-next-line property-no-unknown
-moz-user-drag: none;
// stylelint-disable-next-line property-no-unknown
-o-user-drag: none;
user-drag: none;
// Prevent text selection (standard property)
user-select: none;
pointer-events: none;
}