Skip to content

Commit 8ff5ddd

Browse files
authored
Merge pull request #19 from Cyroxin/master
Fix #18
2 parents f3ec1cd + fad9ea2 commit 8ff5ddd

File tree

7 files changed

+17
-7
lines changed

7 files changed

+17
-7
lines changed

assets/css/scod.css

+8
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,11 @@ div.prototype > code {
145145
display: block;
146146
padding: 1rem 1.5rem;
147147
}
148+
149+
#main-contents {
150+
width: 100%;
151+
}
152+
153+
.prototype {
154+
max-width: fit-content;
155+
}

assets/css/skeleton.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ code {
317317
pre > code {
318318
display: block;
319319
padding: 1rem 1.5rem;
320-
white-space: pre; }
320+
white-space: pre;
321+
overflow-x: auto; }
321322

322323

323324
/* Tables

assets/public/css/style.min.css

Whitespace-only changes.

public/css/style.min.css

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/script.min.js

+3-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
3.02 KB
Loading

views/layout.dt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
html
33
head
44
meta(charset="UTF-8")
5-
meta(name="viewport", content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=3.0")
5+
meta(name="viewport", content="width=device-width, initial-scale=1.0, minimum-scale=1.0")
66
- string title;
77
block title
88
title= title

0 commit comments

Comments
 (0)