Skip to content

Commit

Permalink
remove focus outline none
Browse files Browse the repository at this point in the history
  • Loading branch information
devjiwonchoi committed Feb 7, 2025
1 parent ca099df commit dc85898
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,6 @@ export const styles = css`
border: none;
border-radius: var(--rounded-full);
&:focus {
outline: none;
}
&:not(:disabled):active {
background: var(--color-gray-500);
}
Expand Down
4 changes: 4 additions & 0 deletions test/e2e/app-dir/hello-world/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
'use client'

export default function Page() {
console.error('hello world 1')
console.error('hello world 2')
return <p>hello world</p>
}
2 changes: 1 addition & 1 deletion test/e2e/app-dir/hello-world/next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {}
const nextConfig = { experimental: { newDevOverlay: true } }

module.exports = nextConfig

0 comments on commit dc85898

Please # to comment.