File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
- Nothing yet!
10
+ ### Fixed
11
+
12
+ - Remove duplicate ` outline ` property ([ #116 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/116 ) )
11
13
12
14
## [ 0.5.0] - 2022-03-02
13
15
@@ -24,7 +26,7 @@ Nothing yet!
24
26
### Fixed
25
27
26
28
- Use ` addComponents ` for class strategy ([ #91 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/91 ) )
27
- - Fix extra height on Safari date/time inputs ([ #109 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/109 ) )
29
+ - Fix extra height on Safari date/time inputs ([ #109 ] ( https://github.com/tailwindlabs/tailwindcss-forms/pull/109 ) )
28
30
29
31
## [ 0.4.0] - 2021-12-09
30
32
Original file line number Diff line number Diff line change @@ -277,8 +277,10 @@ const forms = plugin.withOptions(function (options = { strategy: undefined }) {
277
277
base : [ `[type='file']:focus` ] ,
278
278
class : null ,
279
279
styles : {
280
- outline : `1px solid ButtonText` ,
281
- outline : `1px auto -webkit-focus-ring-color` ,
280
+ outline : [
281
+ `1px solid ButtonText` ,
282
+ `1px auto -webkit-focus-ring-color`
283
+ ] ,
282
284
} ,
283
285
} ,
284
286
]
You can’t perform that action at this time.
0 commit comments