Files
cc-switch/src/index.css

38 lines
540 B
CSS
Raw Normal View History

@import "tailwindcss";
/* 全局基础样式 */
2025-08-04 22:16:26 +08:00
* {
box-sizing: border-box;
}
html {
@apply font-sans antialiased;
line-height: 1.5;
2025-08-04 22:16:26 +08:00
}
body {
@apply m-0 p-0 bg-gray-50 text-gray-900 text-sm;
}
/* 滚动条样式 */
::-webkit-scrollbar {
@apply w-1.5 h-1.5;
}
::-webkit-scrollbar-track {
@apply bg-gray-100;
}
::-webkit-scrollbar-thumb {
@apply bg-gray-300 rounded;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400;
}
/* 焦点样式 */
*:focus-visible {
@apply outline-2 outline-blue-500 outline-offset-2;
}