tethys.backend/resources/css/_scrollbars.css
Arno Kaimbacher cd66f318b6 - add EventEmmitter for directly binding Events to component
- add NotificationToast for messages
- add leaflet map component and zoom control component
- change focus:ring to focus:ring-2 inside BaseButton
-  `@tailwindcss/line-clamp` plugin is now included by default...remove it from tailwind.config.js
- npm updates
2023-03-31 14:54:15 +02:00

38 lines
686 B
CSS

html {
scrollbar-width: thin;
scrollbar-color: #9ca3af #e5e7eb;
}
html::-webkit-scrollbar {
width: 8px;
height: 8px;
}
html::-webkit-scrollbar-track {
@apply bg-gray-200;
}
html::-webkit-scrollbar-thumb {
@apply bg-gray-400 rounded;
}
/* html::-webkit-scrollbar-thumb:hover {
@apply bg-gray-500;
} */
html.dark-scrollbars {
scrollbar-color: #374151 #111827;
}
html.dark-scrollbars::-webkit-scrollbar-track {
@apply bg-gray-900;
}
html.dark-scrollbars::-webkit-scrollbar-thumb {
@apply bg-gray-700;
}
/* html.dark-scrollbars::-webkit-scrollbar-thumb:hover {
@apply bg-gray-600;
} */