Skip to content

Commit 1a25ccd

Browse files
authored
Merge pull request #13 from jonwk/feature/background_extended
fixed missing bottom background
2 parents e4442c1 + 4fd5172 commit 1a25ccd

4 files changed

Lines changed: 121 additions & 81 deletions

File tree

sample-app/package-lock.json

Lines changed: 117 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sample-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"next": "12.0.7",
1313
"react": "17.0.2",
1414
"react-dom": "17.0.2",
15-
"react-particles-js": "^3.6.0",
1615
"react-redux": "^7.2.6",
16+
"react-tsparticles": "^2.12.2",
1717
"recharts": "^2.1.8",
1818
"styled-components": "^5.3.3"
1919
},

sample-app/styles/GlobalStyle.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@ const GlobalStyle = createGlobalStyle`
287287
-moz-osx-font-smoothing: grayscale;
288288
font-family: ${fonts.inter};
289289
color: ${colors.darkGrey};
290-
background-color: ${colors.offWhite};
290+
background: #24292e;
291+
box-shadow: inset -24px -24px 39px #1e2226, inset 24px 24px 39px #2a3036;
291292
}
292293
293294
h1, h2, h3, h4, h5, h6 {

sample-app/styles/Section.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { colors } = theme;
55
const Section = styled.section`
66
padding: 3rem 5rem;
77
background: #24292e;
8-
box-shadow: inset -24px -24px 39px #1e2226, inset 24px 24px 39px #2a3036;
8+
// box-shadow: inset -24px -24px 39px #1e2226, inset 24px 24px 39px #2a3036;
99
1010
${media.bp900`
1111
padding: 2rem;

0 commit comments

Comments
 (0)