@@ -12,9 +12,10 @@ module.exports = {
12
12
] ,
13
13
safelist : [
14
14
{
15
- pattern : / .* b g - ( b l u e | g r a y | r e d | y e l l o w | g r e e n ) .* / ,
15
+ pattern : / .* b g - ( b l u e | g r a y | r e d | y e l l o w | g r e e n ) .* / ,
16
16
} ,
17
- ...[ 'green' , 'red' , 'blue' , 'yellow' ] . map ( ( color ) => [ 'bg-' + color + '-100' , 'border-' + color + '-500' ] ) . flat ( ) // Alerts
17
+ ...[ 'green' , 'red' , 'blue' , 'yellow' ] . map ( ( color ) => [ 'bg-' + color + '-100' , 'border-' + color + '-500' ] ) . flat ( ) , // Alerts
18
+ ...[ 'dark:hover:bg-notion-dark-light' ]
18
19
] ,
19
20
darkMode : 'class' , // or 'media' or 'class'
20
21
theme : {
@@ -26,8 +27,8 @@ module.exports = {
26
27
'16%' : { transform : 'translateY(+10%)' }
27
28
} ,
28
29
'infinite-scroll' : {
29
- from : { transform : 'translateX(0)' } ,
30
- to : { transform : 'translateX(-100%)' } ,
30
+ from : { transform : 'translateX(0)' } ,
31
+ to : { transform : 'translateX(-100%)' } ,
31
32
}
32
33
} ,
33
34
animation : {
@@ -84,7 +85,7 @@ module.exports = {
84
85
} ,
85
86
plugins : [
86
87
require ( '@tailwindcss/aspect-ratio' ) ,
87
- plugin ( function ( { addVariant } ) {
88
+ plugin ( function ( { addVariant} ) {
88
89
addVariant ( 'between' , '&:not(:first-child):not(:last-child)' )
89
90
addVariant ( 'hocus' , [ '&:hover' , '&:focus' ] )
90
91
} )
0 commit comments