web-humas-fe/styles/globals.css

37 lines
514 B
CSS
Raw Normal View History

2024-01-05 06:57:30 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-01-29 06:38:26 +00:00
2024-03-11 15:46:08 +00:00
/*
*{
border:1px solid green;
} */
2024-04-19 13:26:27 +00:00
2024-03-11 15:46:08 +00:00
.custom-scrollbar::-webkit-scrollbar {
2024-04-19 13:26:27 +00:00
width: 1px;
2024-03-11 15:46:08 +00:00
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
2024-04-19 13:26:27 +00:00
background: rgb(190, 189, 189);
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
2024-03-11 15:46:08 +00:00
background: transparent;
2024-04-19 13:26:27 +00:00
}
.hidden-tooltip {
display: none;
}
.sidebar-scrollbar {
--scroll-shadow-size: 40px;
}
2024-04-24 04:14:06 +00:00