lifeto-shop/src/index.css

29 lines
767 B
CSS
Raw Normal View History

2025-06-20 05:41:10 +00:00
@import "tailwindcss";
2025-05-13 01:16:13 +00:00
2025-05-25 05:17:41 +00:00
html {
2025-06-20 05:41:10 +00:00
cursor: url(/assets/cursor.png), auto !important;
2025-05-25 05:17:41 +00:00
}
@theme {
2025-06-20 05:41:10 +00:00
--cursor-default: url(/assets/cursor.png), auto !important;
--cursor-pointer: url(/assets/cursor.png), pointer !important;
--cursor-text: url(/assets/cursor.png), pointer !important;
2025-05-25 05:17:41 +00:00
}
2025-05-13 01:16:13 +00:00
/*
2025-05-25 05:17:41 +00:00
The default border color has changed to `currentcolor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
2025-05-13 01:16:13 +00:00
2025-05-25 05:17:41 +00:00
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
2025-05-13 01:16:13 +00:00
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentcolor);
}
}