Skip to content

Commit

Permalink
Fix missing curly brace in _app.js styles (reflex-dev#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrgl committed Dec 20, 2022
1 parent 9c3b81f commit 76e6a69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pynecone/.templates/web/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import theme from "/utils/theme";
const GlobalStyles = css`
/* Hide the blue border around Chakra components. */
.js-focus-visible :focus:not([data-focus-visible-added]) {
outline: none;
box-shadow: none;
outline: none;
box-shadow: none;
}
`;

function MyApp({ Component, pageProps }) {
Expand Down

0 comments on commit 76e6a69

Please sign in to comment.