File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ const Header = () => {
29
29
</ div >
30
30
</ Link >
31
31
< div className = "flex items-center space-x-4 leading-5 sm:space-x-6" >
32
- < div className = "no-scrollbar hidden max-w-40 items-center space-x-4 overflow-x-auto sm:flex sm:space-x-6 md:max-w-72 lg:max-w-96" >
32
+ < div className = "no-scrollbar hidden max-w-40 items-center space-x-4 overflow-x-auto pr-2 sm:flex sm:space-x-6 md:max-w-72 lg:max-w-96" >
33
33
{ headerNavLinks
34
34
. filter ( ( link ) => link . href !== '/' )
35
35
. map ( ( link ) => (
36
36
< Link
37
37
key = { link . title }
38
38
href = { link . href }
39
- className = "block font-medium text-gray-900 hover:text-primary-500 dark:text-gray-100 dark:hover:text-primary-400"
39
+ className = "m-1 block font-medium text-gray-900 hover:text-primary-500 dark:text-gray-100 dark:hover:text-primary-400"
40
40
>
41
41
{ link . title }
42
42
</ Link >
Original file line number Diff line number Diff line change @@ -72,5 +72,20 @@ module.exports = {
72
72
} ) ,
73
73
} ,
74
74
} ,
75
- plugins : [ require ( '@tailwindcss/forms' ) , require ( '@tailwindcss/typography' ) ] ,
75
+ plugins : [
76
+ require ( '@tailwindcss/forms' ) ,
77
+ require ( '@tailwindcss/typography' ) ,
78
+ ( { addBase, theme } ) => {
79
+ addBase ( {
80
+ 'a, button' : {
81
+ outlineColor : theme ( 'colors.primary.500' ) ,
82
+ '&:focus-visible' : {
83
+ outline : '2px solid' ,
84
+ borderRadius : theme ( 'borderRadius.DEFAULT' ) ,
85
+ outlineColor : theme ( 'colors.primary.500' ) ,
86
+ } ,
87
+ } ,
88
+ } )
89
+ } ,
90
+ ] ,
76
91
}
You can’t perform that action at this time.
0 commit comments