tianji/website/src/css/base.css

39 lines
716 B
CSS
Raw Normal View History

2023-11-04 10:23:32 +00:00
@tailwind base;
2023-11-04 11:50:34 +00:00
@layer base {
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
@apply bg-black bg-opacity-10;
border-color: transparent;
background-clip: padding-box;
border-width: 2px;
border-style: solid;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-black bg-opacity-20;
}
::-webkit-scrollbar-track {
@apply bg-black bg-opacity-5;
border-color: transparent;
background-clip: padding-box;
border-width: 2px;
border-style: solid;
border-radius: 4px;
}
}
2023-11-04 10:23:32 +00:00
@tailwind components;
@tailwind utilities;