File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1212 & > code {
1313 @apply font-ibm-plex-mono
1414 font-regular
15+ scrollbar-thin
1516 grid
1617 overflow-x-auto
1718 bg-transparent
Original file line number Diff line number Diff line change 33
44 .tabsList {
55 @apply font-open-sans
6+ scrollbar-thin
67 flex
78 gap-2
89 overflow-x-auto;
Original file line number Diff line number Diff line change 11import type { Config } from 'tailwindcss' ;
2+ import plugin from 'tailwindcss/plugin' ;
23
34export default {
45 content : [
@@ -174,5 +175,12 @@ export default {
174175 plugins : [
175176 require ( '@savvywombat/tailwindcss-grid-areas' ) ,
176177 require ( '@tailwindcss/container-queries' ) ,
178+ plugin ( function ( { addUtilities } ) {
179+ addUtilities ( {
180+ '.scrollbar-thin' : {
181+ 'scrollbar-width' : 'thin' ,
182+ } ,
183+ } ) ;
184+ } ) ,
177185 ] ,
178186} satisfies Config ;
You can’t perform that action at this time.
0 commit comments