Преглед на файлове

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`
 const GlobalStyles = css`
   /* Hide the blue border around Chakra components. */
   /* Hide the blue border around Chakra components. */
   .js-focus-visible :focus:not([data-focus-visible-added]) {
   .js-focus-visible :focus:not([data-focus-visible-added]) {
-     outline: none;
-     box-shadow: none;
+    outline: none;
+    box-shadow: none;
+  }
 `;
 `;
 
 
 function MyApp({ Component, pageProps }) {
 function MyApp({ Component, pageProps }) {