Skip to content

Commit 810b807

Browse files
committed
# Conflicts: # src/index.js
2 parents 2635e54 + 571d9d7 commit 810b807

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Nothing yet!
1111

12+
## [0.2.1] - 2020-11-17
13+
14+
### Fixed
15+
16+
- Fix issue where default checkbox/radio border color took precedence over user border color on focus ([d0b9fd9](https://github.com/tailwindlabs/tailwindcss-forms/commit/d0b9fd9))
17+
1218
## [0.2.0] - 2020-11-16
1319

1420
### Changed
@@ -44,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4450

4551
Initial release!
4652

47-
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.2.0...HEAD
53+
[unreleased]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.2.1...HEAD
54+
[0.2.1]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.2.0...v0.2.1
4855
[0.2.0]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.1.4...v0.2.0
4956
[0.1.4]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.1.3...v0.1.4
5057
[0.1.3]: https://github.com/tailwindlabs/tailwindcss-forms/compare/v0.1.2...v0.1.3

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Tailwind Labs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h2 class="text-2xl font-bold">Simple</h2>
119119
<label class="inline-flex items-center">
120120
<input
121121
type="checkbox"
122-
class="rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50"
122+
class="rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-offset-0 focus:ring-indigo-200 focus:ring-opacity-50"
123123
checked
124124
/>
125125
<span class="ml-2">Email me news and special offers</span>

package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tailwindcss/forms",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"main": "src/index.js",
55
"license": "MIT",
66
"repository": "https://github.com/tailwindlabs/tailwindcss-forms",
@@ -14,14 +14,21 @@
1414
"trailingComma": "es5"
1515
},
1616
"scripts": {
17-
"prepublishOnly": "node scripts/build.js"
17+
"dev": "concurrently \"npm run serve\" \"npm run watch\"",
18+
"serve": "live-server .",
19+
"watch": "chokidar \"./src/**/*.js\" -c \"npm run build\"",
20+
"build": "node scripts/build.js",
21+
"prepublishOnly": "npm run build"
1822
},
1923
"peerDependencies": {
2024
"tailwindcss":">=2.0.0"
2125
},
2226
"devDependencies": {
2327
"autoprefixer": "^10.0.2",
28+
"chokidar-cli": "^2.1.0",
2429
"clean-css": "^4.2.1",
30+
"concurrently": "^5.3.0",
31+
"live-server": "^1.2.1",
2532
"postcss": "^8.1.7",
2633
"tailwindcss": "^2.0.3"
2734
},

src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ const forms = plugin.withOptions(function (options) {
125125
'--tw-ring-offset-shadow': `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`,
126126
'--tw-ring-shadow': `var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)`,
127127
'box-shadow': `var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)`,
128-
'border-color': theme('colors.gray.500', colors.gray[500]),
129128
},
130129

131130
[swap(

0 commit comments

Comments
 (0)