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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-04-06 19:15:01 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-04-06 23:20:58 +0300
commitebb91c7f0428ade28d78bcec4c02b60258cdab68 (patch)
tree66854122acb953d143a884cdc41f2ac143c7533a
parent2c6472390d84743381742b69e7554ece1d2a34d4 (diff)
Wrap code blocks to next line
-rw-r--r--app/assets/stylesheets/framework/typography.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss
index 7b2aada5a0d..be64d932213 100644
--- a/app/assets/stylesheets/framework/typography.scss
+++ b/app/assets/stylesheets/framework/typography.scss
@@ -16,8 +16,9 @@
code {
font-family: $monospace_font;
- white-space: pre;
+ white-space: pre-wrap;
word-wrap: normal;
+ word-break: break-word;
}
kbd {