diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-03 04:44:04 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-03 04:44:04 +0300 |
commit | 18d265d4a1bbab91c9fa9d22a9aec6760e05ebf5 (patch) | |
tree | 97a71499848d2a9b76a6cf27ff15fd228c6c5af8 | |
parent | 623d81186ad779edfda20f4a599eca9a7173e41e (diff) | |
download | popov.link-18d265d4a1bbab91c9fa9d22a9aec6760e05ebf5.tar.xz popov.link-18d265d4a1bbab91c9fa9d22a9aec6760e05ebf5.zip |
Fixed display errors
Signed-off-by: Valentin Popov <valentineus@gmail.com>
-rw-r--r-- | _includes/head.html | 2 | ||||
-rw-r--r-- | assets/css/poole.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_includes/head.html b/_includes/head.html index ca46abc..bdab743 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -16,9 +16,9 @@ <!-- CSS --> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface" /> - <link rel="stylesheet" href="{{ "/assets/css/hyde.css" | relative_url }}" /> <link rel="stylesheet" href="{{ "/assets/css/poole.css" | relative_url }}" /> <link rel="stylesheet" href="{{ "/assets/css/syntax.css" | relative_url }}" /> + <link rel="stylesheet" href="{{ "/assets/css/hyde.css" | relative_url }}" /> <!-- Favicon --> <link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url }}" /> diff --git a/assets/css/poole.css b/assets/css/poole.css index 75aa174..f8d5027 100644 --- a/assets/css/poole.css +++ b/assets/css/poole.css @@ -135,8 +135,8 @@ pre { margin-bottom: 1rem; margin-top: 0; padding: 1rem; - white-space: pre-wrap; white-space: pre; + white-space: pre-wrap; word-break: break-all; word-wrap: break-word; } |