_utilities.scrollbars.scss 600 B

12345678910111213141516171819202122232425
  1. .u-scrollbar-thin {
  2. // Scrollbar styling for firefox
  3. // https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color
  4. scrollbar-color: theme('colors.grey.100') theme('colors.white.DEFAULT');
  5. scrollbar-width: thin;
  6. //Custom scrollbar styling for Safari & Chrome Windows / Mac / Android.
  7. &::-webkit-scrollbar {
  8. width: 5px;
  9. height: 5px;
  10. }
  11. &::-webkit-scrollbar-button {
  12. @apply w-hidden;
  13. // Hide the scrollbar arrows on windows
  14. }
  15. &::-webkit-scrollbar-thumb {
  16. @apply w-bg-grey-200 w-rounded-sm;
  17. }
  18. &::-webkit-scrollbar-track {
  19. @apply w-bg-white;
  20. }
  21. }