Explorar o código

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

Kabir Goel %!s(int64=2) %!d(string=hai) anos
pai
achega
76e6a690ce
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  1. 3 2
      pynecone/.templates/web/pages/_app.js

+ 3 - 2
pynecone/.templates/web/pages/_app.js

@@ -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 }) {