We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 115f1e9 commit 5e9f3a3Copy full SHA for 5e9f3a3
src/css/components/0_utilities/layout.css
@@ -15,3 +15,7 @@ html {
15
width: inherit;
16
overflow: inherit;
17
}
18
+
19
+.entry-point > div {
20
+ box-shadow: none;
21
+}
src/html.js
@@ -17,7 +17,11 @@ function HTML(props) {
/>
</head>
<body>
- <div id="___gatsby" dangerouslySetInnerHTML={{ __html: props.body }} />
+ <div
+ id="___gatsby"
22
+ className="entry-point"
23
+ dangerouslySetInnerHTML={{ __html: props.body }}
24
+ />
25
{props.postBodyComponents}
26
</body>
27
</html>
0 commit comments