Skip to content

Commit 429eac6

Browse files
author
Jaroslaw
committed
Update styles
1 parent e819bc0 commit 429eac6

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

src/pages/_app.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import "@/pages/styles.css";
2+
3+
function App({ Component, pageProps }: any) {
4+
return <Component {...pageProps} />;
5+
}
6+
7+
export default App;

src/pages/styles.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
*,
2+
*::after,
3+
*::before {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: inherit;
7+
}
8+
9+
body {
10+
background: #191919;
11+
width: 100%;
12+
height: 100vh;
13+
color: white;
14+
transition: 0.4s ease-in-out;
15+
}
16+
17+
#__next-prerender-indicator {
18+
display: none;
19+
}

0 commit comments

Comments
 (0)