Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/surajmandalcell/potato-dark.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzcutlip <uid000@gmail.com>2018-10-02 20:21:43 +0300
committerGitHub <noreply@github.com>2018-10-02 20:21:43 +0300
commit52d2cd2a1158acad88ded711a280443ca84d171a (patch)
tree9a8eb374ee100090ff6ac1c908f9cfbd7a9b36c4
parentf118ad117c204d07eaaf3c48b4abd67158ca4fda (diff)
Fix syntax error in style.css
body line-height lacked a semicolon. This caused body text to be vertically spaced too tightly. As a result, `<code>` text looked overly spaced.
-rw-r--r--static/css/style.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 11dc482..8c64fe0 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -43,7 +43,7 @@ html {
body {
color: #747369d4;
background: #111114;
- line-height: 1.57
+ line-height: 1.57;
font-size: 1.0rem;
font-family: -apple-system, BlinkMacSystemFont, YakuHanJP, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
}