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 23:20:13 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-04-06 23:20:58 +0300
commitdcdf0b2af2514f9f6778fd16cbcb77929a0bd708 (patch)
treea94eedfa9dba84dd0785eb155cf924c09cd512f6 /app/assets/stylesheets/pages/detail_page.scss
parentebb91c7f0428ade28d78bcec4c02b60258cdab68 (diff)
Horizontally scroll code blocks instead of wrapping
Diffstat (limited to 'app/assets/stylesheets/pages/detail_page.scss')
-rw-r--r--app/assets/stylesheets/pages/detail_page.scss8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/detail_page.scss b/app/assets/stylesheets/pages/detail_page.scss
index d3eda1a57e6..5917f089720 100644
--- a/app/assets/stylesheets/pages/detail_page.scss
+++ b/app/assets/stylesheets/pages/detail_page.scss
@@ -33,8 +33,12 @@
.description {
margin-top: 6px;
- p:last-child {
- margin-bottom: 0;
+ p {
+ overflow-x: auto;
+
+ &:last-child {
+ margin-bottom: 0;
+ }
}
}
}