@barguide/style-guide
Version:
BarGuide.io | CSS Style Guide
41 lines (32 loc) • 714 B
CSS
/*
* {
box-sizing: border-box;
scrollbar-color: theme('colors.primary') theme('colors.gray.0');
scrollbar-width: thin;
}
::-webkit-scrollbar {
cursor: pointer;
width: theme('spacing.1x');
}
::-webkit-scrollbar-track {
background: theme('colors.gray.0');
}
::-webkit-scrollbar-thumb {
background-color: theme('colors.primary');
border: 2px solid theme('colors.white');
border-radius: theme('spacing.1xs');
}
::-moz-selection {
background: theme('colors.primary');
color: theme('colors.white');
}
::selection {
background: theme('colors.primary');
color: theme('colors.white');
}
:focus-visible {
border: unset;
box-shadow: unset;
outline-color: theme('colors.primary');
}
*/