Skip to content

Commit 8f2b445

Browse files
authored
Handle banner in sidebar styles fixes #4878 (#4886)
1 parent 8ca8c3d commit 8f2b445

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

www/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,36 +6,36 @@
66
"dependencies": {
77
"bluebird": "^3.5.1",
88
"email-validator": "^1.1.1",
9-
"gatsby": "^1.9.225",
10-
"gatsby-image": "^1.0.41",
11-
"gatsby-link": "^1.6.38",
9+
"gatsby": "^1.9.246",
10+
"gatsby-image": "^1.0.43",
11+
"gatsby-link": "^1.6.40",
1212
"gatsby-plugin-catch-links": "^1.0.19",
1313
"gatsby-plugin-feed": "^1.3.19",
14-
"gatsby-plugin-fullstory": "^1.0.0",
14+
"gatsby-plugin-fullstory": "^1.0.3",
1515
"gatsby-plugin-glamor": "^1.6.13",
16-
"gatsby-plugin-google-analytics": "^1.0.20",
16+
"gatsby-plugin-google-analytics": "^1.0.28",
1717
"gatsby-plugin-lodash": "^1.0.11",
18-
"gatsby-plugin-manifest": "^1.0.15",
18+
"gatsby-plugin-manifest": "^1.0.17",
1919
"gatsby-plugin-netlify": "^1.0.19",
2020
"gatsby-plugin-nprogress": "^1.0.14",
2121
"gatsby-plugin-offline": "^1.0.15",
22-
"gatsby-plugin-react-helmet": "^2.0.7",
22+
"gatsby-plugin-react-helmet": "^2.0.10",
2323
"gatsby-plugin-react-next": "^1.0.11",
2424
"gatsby-plugin-sharp": "^1.6.40",
2525
"gatsby-plugin-sitemap": "^1.2.15",
2626
"gatsby-plugin-twitter": "^1.0.19",
2727
"gatsby-plugin-typography": "^1.7.17",
28-
"gatsby-remark-autolink-headers": "^1.4.13",
29-
"gatsby-remark-copy-linked-files": "^1.5.30",
30-
"gatsby-remark-images": "^1.5.56",
31-
"gatsby-remark-prismjs": "^1.2.17",
28+
"gatsby-remark-autolink-headers": "^1.4.16",
29+
"gatsby-remark-copy-linked-files": "^1.5.31",
30+
"gatsby-remark-images": "^1.5.60",
31+
"gatsby-remark-prismjs": "^1.2.23",
3232
"gatsby-remark-responsive-iframe": "^1.4.18",
3333
"gatsby-remark-smartypants": "^1.4.12",
34-
"gatsby-source-filesystem": "^1.5.26",
34+
"gatsby-source-filesystem": "^1.5.29",
3535
"gatsby-source-npm-package-search": "^1.0.1",
3636
"gatsby-transformer-csv": "^1.3.9",
3737
"gatsby-transformer-documentationjs": "^1.4.10",
38-
"gatsby-transformer-remark": "^1.7.36",
38+
"gatsby-transformer-remark": "^1.7.39",
3939
"gatsby-transformer-sharp": "^1.6.22",
4040
"gatsby-transformer-yaml": "^1.5.16",
4141
"graphql-request": "^1.5.1",

www/src/layouts/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class DefaultLayout extends React.Component {
6363
position: `fixed`,
6464
top: `calc(${presets.headerHeight} + 2.8rem - 1px)`,
6565
overflowY: `auto`,
66-
height: `calc(100vh - ${presets.headerHeight} + 1px)`,
66+
height: `calc(100vh - ${presets.headerHeight} - 2.8rem + 1px)`,
6767
WebkitOverflowScrolling: `touch`,
6868
"::-webkit-scrollbar": {
6969
width: `6px`,

0 commit comments

Comments
 (0)