Fix missing curly brace in _app.js styles (#145)

This commit is contained in:
Kabir Goel 2022-12-20 11:37:24 +05:30 committed by GitHub
parent 9c3b81ff82
commit 76e6a690ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,8 +5,9 @@ import theme from "/utils/theme";
const GlobalStyles = css` const GlobalStyles = css`
/* Hide the blue border around Chakra components. */ /* Hide the blue border around Chakra components. */
.js-focus-visible :focus:not([data-focus-visible-added]) { .js-focus-visible :focus:not([data-focus-visible-added]) {
outline: none; outline: none;
box-shadow: none; box-shadow: none;
}
`; `;
function MyApp({ Component, pageProps }) { function MyApp({ Component, pageProps }) {