Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lfades committed Nov 20, 2020
1 parent 9707a86 commit 5772d3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion examples/with-tailwindcss/components/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ export default function Nav() {
<ul className="flex items-center justify-between p-8">
<li>
<Link href="/">
<a className="text-blue-500 no-underline text-accent-1 dark:text-blue-300">Home</a>
<a className="text-blue-500 no-underline text-accent-1 dark:text-blue-300">
Home
</a>
</Link>
</li>
<ul className="flex items-center justify-between space-x-4">
Expand Down
5 changes: 1 addition & 4 deletions examples/with-tailwindcss/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
module.exports = {
plugins: [
'tailwindcss',
'autoprefixer',
],
plugins: ['tailwindcss', 'autoprefixer'],
}

0 comments on commit 5772d3c

Please sign in to comment.