Files
template-vue-hucky/src/style.css

38 lines
727 B
CSS
Raw Normal View History

2025-08-01 17:52:35 +08:00
@import "tailwindcss";
2026-01-31 00:00:46 +08:00
@import "tw-animate-css";
2026-02-16 02:12:51 +08:00
@plugin "@iconify/tailwind4";
2026-01-31 00:00:46 +08:00
@custom-variant dark (&:is(.dark *));
2026-01-30 23:22:54 +08:00
@plugin "daisyui" {
themes: all;
};
2025-09-15 08:44:17 +08:00
/* Custom Scrollbar Styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 10px;
transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0, 0.3);
}
/* Firefox scrollbar styles */
* {
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
}
2026-01-31 00:00:46 +08:00
2026-01-31 02:54:00 +08:00
// 关于 shadcn 的主题, 请进入组件内部通过 style 设置 css 变量