Skip to content

Commit

Permalink
Fix some naming and styles
Browse files Browse the repository at this point in the history
  • Loading branch information
philipjames44 committed Mar 5, 2024
1 parent 23b2c61 commit 159a896
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { AppProps } from "next/app";
import "@/global.css";
import { ChakraProvider, extendTheme } from "@chakra-ui/react";

function MyApp({ Component, pageProps }: AppProps) {
function app({ Component, pageProps }: AppProps) {
// May not necessarily be the best way to apply global styles
const theme = extendTheme({
styles: {
Expand All @@ -24,4 +24,4 @@ function MyApp({ Component, pageProps }: AppProps) {
);
}

export default MyApp;
export default app;
2 changes: 1 addition & 1 deletion styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ img {
/* Smaller glow */ 0 0 15px var(--complimentary-background),
/* Subtle bright glow */ 0 0 20px var(--complimentary-background),
/* Subtle bright glow */ 0 0 25px var(--complimentary-background),
/* Subtle bright glow */ 0 0 30px var(--complimentary-background); /* Subtle bright glow */
/* Subtle bright glow */ 0 0 30px var(--complimentary-background);
}

.neon-spinner {
Expand Down

0 comments on commit 159a896

Please sign in to comment.