Skip to content

Commit

Permalink
Revert to previous outline-none styles
Browse files Browse the repository at this point in the history
Co-Authored-By: Adam Wathan <4323180+adamwathan@users.noreply.github.com>
  • Loading branch information
reinink and adamwathan committed Oct 26, 2021
1 parent 983fd14 commit 9ed9a93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/corePlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -1797,7 +1797,7 @@ export let corePlugins = {
'.outline-dotted': { 'outline-style': 'dotted' },
'.outline-double': { 'outline-style': 'double' },
'.outline-hidden': { 'outline-style': 'hidden' },
'.outline-none': { 'outline-style': 'none' },
'.outline-none': { 'outline': '2px solid transparent' },
})
},

Expand Down
2 changes: 1 addition & 1 deletion tests/basic-usage.test.css
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@
outline-style: dashed;
}
.outline-none {
outline-style: none;
outline: 2px solid transparent;
}
.outline-4 {
outline-width: 4px;
Expand Down

0 comments on commit 9ed9a93

Please sign in to comment.