Skip to content

Commit fa74eff

Browse files
committed
fixed missing bottom background
1 parent e4442c1 commit fa74eff

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

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)