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

@ -7,6 +7,7 @@ const GlobalStyles = css`
.js-focus-visible :focus:not([data-focus-visible-added]) {
outline: none;
box-shadow: none;
}
`;
function MyApp({ Component, pageProps }) {