File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ a.button {
117
117
display : inline-block;
118
118
}
119
119
120
- @media screen and (max-width : 767 px ) {
120
+ @media screen and (max-width : 991 px ) {
121
121
.container {
122
122
grid-column-gap : 0rem ;
123
123
grid-row-gap : 0rem ;
@@ -132,7 +132,9 @@ a.button {
132
132
section + figure img {
133
133
padding-top : var (--space-16 );
134
134
}
135
+ }
135
136
137
+ @media screen and (max-width : 767px ) {
136
138
h2 {
137
139
font-size : 36px ;
138
140
}
@@ -232,7 +234,7 @@ footer div.status a.severity-none {
232
234
color : var (--neutral-10 );
233
235
}
234
236
235
- @media screen and (max-width : 767 px ) {
237
+ @media screen and (max-width : 991 px ) {
236
238
footer {
237
239
flex-direction : column;
238
240
gap : var (--space-16 );
Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ export const renderCodeBlocks = () => {
212
212
newCodeFragment . appendChild ( copyToast ) ;
213
213
214
214
hljs . highlightElement ( codeBlock ) ;
215
- console . log ( 'codeBlock:' , codeBlock ) ;
216
215
const newCode = [ ] ;
217
216
const codeLines = codeBlock . innerHTML . split ( '\n' ) ;
218
217
codeLines . forEach ( ( line , index ) => {
You can’t perform that action at this time.
0 commit comments