浏览代码

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

Kabir Goel 2 年之前
父节点
当前提交
76e6a690ce
共有 1 个文件被更改,包括 3 次插入2 次删除
  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 }) {