فهرست منبع

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