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

github.com/eshlox/simplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrzemysław Kołodziejczyk <eshlox@vertolabs.com>2018-12-15 15:48:04 +0300
committerPrzemysław Kołodziejczyk <eshlox@vertolabs.com>2018-12-15 15:48:04 +0300
commit240609c52b0143b4ff7bbcbdcb6f6fa5b02499cf (patch)
treef37d40003095a342deb39617f1945f100446dced
parent0763c34e47e18d9416e201a4571e85b2bd6a75ac (diff)
Responsive pre>code
-rw-r--r--assets/src/styles/_components/content.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/src/styles/_components/content.scss b/assets/src/styles/_components/content.scss
index 674a092..26e53f2 100644
--- a/assets/src/styles/_components/content.scss
+++ b/assets/src/styles/_components/content.scss
@@ -118,6 +118,23 @@ body {
code {
background-color: $color-zhen-zhu-bai-pearl;
color: $color-bara-red;
+ white-space: normal;
+
+ /* These are technically the same, but use both */
+ overflow-wrap: break-word;
+ word-wrap: break-word;
+
+ -ms-word-break: break-all;
+ /* This is the dangerous one in WebKit, as it breaks things wherever */
+ word-break: break-all;
+ /* Instead use this non-standard one: */
+ word-break: break-word;
+
+ /* Adds a hyphen where the word breaks, if supported (No Blink) */
+ -ms-hyphens: auto;
+ -moz-hyphens: auto;
+ -webkit-hyphens: auto;
+ hyphens: auto;
}
}