File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -108,24 +108,24 @@ function getDropShadow() {
108
108
const new_utilities = { } ;
109
109
new_utilities [ ".drop-shadow" ] = {
110
110
filter :
111
- "drop-shadow(var(--tw -filter-size, 0px 0px 2px) var(--tw -filter-color, #000000))" ,
111
+ "drop-shadow(var(--ta -filter-size, 0px 0px 2px) var(--ta -filter-color, #000000))" ,
112
112
} ;
113
113
114
114
sizes . forEach ( ( size ) => {
115
115
new_utilities [ ".drop-shadow-" + size . name ] = {
116
- "--tw -filter-size" : size . value ,
116
+ "--ta -filter-size" : size . value ,
117
117
} ;
118
118
} ) ;
119
119
for ( const property in colors ) {
120
120
if ( typeof colors [ property ] !== "object" ) {
121
121
new_utilities [ ".drop-shadow-" + property ] = {
122
- "--tw -filter-color" : colors [ property ] ,
122
+ "--ta -filter-color" : colors [ property ] ,
123
123
} ;
124
124
continue ;
125
125
}
126
126
for ( const item in colors [ property ] ) {
127
127
new_utilities [ ".drop-shadow-" + property + "-" + item ] = {
128
- "--tw -filter-color" : colors [ property ] [ item ] ,
128
+ "--ta -filter-color" : colors [ property ] [ item ] ,
129
129
} ;
130
130
}
131
131
}
You can’t perform that action at this time.
0 commit comments