Browse Source

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

Kabir Goel 2 năm trước cách đây
mục cha
commit
76e6a690ce
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  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 }) {