Skip to content

Commit f4e255b

Browse files
committed
[skip publish] error page fix
1 parent 4af1367 commit f4e255b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

public/errors/errors.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ a.button {
117117
display: inline-block;
118118
}
119119

120-
@media screen and (max-width: 767px) {
120+
@media screen and (max-width: 991px) {
121121
.container {
122122
grid-column-gap: 0rem;
123123
grid-row-gap: 0rem;
@@ -132,7 +132,9 @@ a.button {
132132
section + figure img {
133133
padding-top: var(--space-16);
134134
}
135+
}
135136

137+
@media screen and (max-width: 767px) {
136138
h2 {
137139
font-size: 36px;
138140
}
@@ -232,7 +234,7 @@ footer div.status a.severity-none {
232234
color: var(--neutral-10);
233235
}
234236

235-
@media screen and (max-width: 767px) {
237+
@media screen and (max-width: 991px) {
236238
footer {
237239
flex-direction: column;
238240
gap: var(--space-16);

src/js/lib/common.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ export const renderCodeBlocks = () => {
212212
newCodeFragment.appendChild(copyToast);
213213

214214
hljs.highlightElement(codeBlock);
215-
console.log('codeBlock:', codeBlock);
216215
const newCode = [];
217216
const codeLines = codeBlock.innerHTML.split('\n');
218217
codeLines.forEach((line, index) => {

0 commit comments

Comments
 (0)