File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Fixed
11
11
12
12
- Remove duplicate ` outline ` property ([ #116 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/116 ) )
13
+ - Fix autoprefixer warning about ` color-adjust ` ([ #115 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/115 ) )
13
14
14
15
## [ 0.5.0] - 2022-03-02
15
16
Original file line number Diff line number Diff line change 23
23
"tailwindcss" : " >=3.0.0 || >= 3.0.0-alpha.1"
24
24
},
25
25
"devDependencies" : {
26
- "autoprefixer" : " ^10.4.2 " ,
26
+ "autoprefixer" : " ^10.4.6 " ,
27
27
"concurrently" : " ^5.3.0" ,
28
- "live-server" : " ^1.2.1 " ,
29
- "postcss" : " ^8.4.5 " ,
30
- "tailwindcss" : " ^3.0.2 "
28
+ "live-server" : " ^1.2.2 " ,
29
+ "postcss" : " ^8.4.13 " ,
30
+ "tailwindcss" : " ^3.0.24 "
31
31
},
32
32
"dependencies" : {
33
33
"mini-svg-data-uri" : " ^1.2.3"
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ const forms = plugin.withOptions(function (options = { strategy: undefined }) {
126
126
'background-repeat' : `no-repeat` ,
127
127
'background-size' : `1.5em 1.5em` ,
128
128
'padding-right' : spacing [ 10 ] ,
129
- 'color-adjust' : `exact` ,
129
+ 'print- color-adjust' : `exact` ,
130
130
} ,
131
131
} ,
132
132
{
@@ -138,7 +138,7 @@ const forms = plugin.withOptions(function (options = { strategy: undefined }) {
138
138
'background-repeat' : 'unset' ,
139
139
'background-size' : 'initial' ,
140
140
'padding-right' : spacing [ 3 ] ,
141
- 'color-adjust' : 'unset' ,
141
+ 'print- color-adjust' : 'unset' ,
142
142
} ,
143
143
} ,
144
144
{
@@ -147,7 +147,7 @@ const forms = plugin.withOptions(function (options = { strategy: undefined }) {
147
147
styles : {
148
148
appearance : 'none' ,
149
149
padding : '0' ,
150
- 'color-adjust' : 'exact' ,
150
+ 'print- color-adjust' : 'exact' ,
151
151
display : 'inline-block' ,
152
152
'vertical-align' : 'middle' ,
153
153
'background-origin' : 'border-box' ,
You can’t perform that action at this time.
0 commit comments