@@ -96,7 +96,7 @@ const HandbookTemplate: React.FC<Props> = (props) => {
96
96
< section id = "doc-layout" >
97
97
< SidebarToggleButton />
98
98
99
- < div className = "page-popup" id = "page-helpful-popup" style = { { opacity : 0 } } >
99
+ < div className = "page-popup" id = "page-helpful-popup" style = { { opacity : 0 , display : "none" } } >
100
100
< p > Was this page helpful?</ p >
101
101
< div >
102
102
< button className = "first" id = "like-button-popup" title = "Like this page" > < LikeUnfilledSVG /> </ button >
@@ -138,21 +138,21 @@ const HandbookTemplate: React.FC<Props> = (props) => {
138
138
</ >
139
139
}
140
140
141
- { showExperimental &&
142
- < div id = "deprecated-header" >
143
- < div id = "deprecated-content" >
144
- < div id = "deprecated-icon" >
145
- < svg width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" xmlns = "http://www.w3.org/2000/svg" > < circle cx = "8" cy = "8" r = "7.5" stroke = "black" /> < path d = "M8 3V9" stroke = "black" /> < path d = "M8 11L8 13" stroke = "black" /> </ svg >
146
- </ div >
147
- < div >
148
- < h3 > { i ( "handb_experimental_title" ) } </ h3 >
149
- < p > { i ( "handb_experimental_subtitle" ) } </ p >
150
- </ div >
141
+ { showExperimental &&
142
+ < div id = "deprecated-header" >
143
+ < div id = "deprecated-content" >
144
+ < div id = "deprecated-icon" >
145
+ < svg width = "16" height = "16" viewBox = "0 0 16 16" fill = "none" xmlns = "http://www.w3.org/2000/svg" > < circle cx = "8" cy = "8" r = "7.5" stroke = "black" /> < path d = "M8 3V9" stroke = "black" /> < path d = "M8 11L8 13" stroke = "black" /> </ svg >
151
146
</ div >
147
+ < div >
148
+ < h3 > { i ( "handb_experimental_title" ) } </ h3 >
149
+ < p > { i ( "handb_experimental_subtitle" ) } </ p >
150
+ </ div >
151
+ </ div >
152
152
</ div >
153
153
}
154
154
155
- < h2 > { post . frontmatter . title } </ h2 >
155
+ < h1 > { post . frontmatter . title } </ h1 >
156
156
{ post . frontmatter . preamble && < div className = "preamble" dangerouslySetInnerHTML = { { __html : post . frontmatter . preamble } } /> }
157
157
< article >
158
158
< div className = "whitespace raised" >
@@ -190,7 +190,7 @@ const HandbookTemplate: React.FC<Props> = (props) => {
190
190
< Contributors lang = { props . pageContext . lang } i = { i } path = { props . pageContext . repoPath } lastEdited = { props . pageContext . modifiedTime } />
191
191
</ div >
192
192
</ section >
193
- < Popup { ...showPopup } />
193
+ < Popup { ...showPopup } />
194
194
</ Layout >
195
195
)
196
196
}
0 commit comments