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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid O'Regan <doregan@gitlab.com>2021-02-20 07:51:05 +0300
committerSuzanne Selhorn <sselhorn@gitlab.com>2021-02-20 07:51:05 +0300
commit0163a9d188662f76ba47b69871713ed2ac7dd507 (patch)
treeb1e412c1135d3c82f0c48b10dd7e8915f4e301ec
parent5935d55ceef71b146f5875798cf621f9d54ad13a (diff)
Fix blockquote spacing issues
-rw-r--r--content/assets/stylesheets/stylesheet.scss18
1 files changed, 14 insertions, 4 deletions
diff --git a/content/assets/stylesheets/stylesheet.scss b/content/assets/stylesheets/stylesheet.scss
index 86ff1738..b78941fd 100644
--- a/content/assets/stylesheets/stylesheet.scss
+++ b/content/assets/stylesheets/stylesheet.scss
@@ -1,5 +1,5 @@
---
-version: 98
+version: 99
---
@import "variables";
@@ -111,17 +111,27 @@ blockquote {
color: $blockquote-txt-color;
border: solid 1px $blockquote-border-color;
border-radius: 5px;
- margin: 20px 0;
- padding: 10px 20px;
+ margin: 1rem 0;
+ padding: 0 1rem;
font-size: $body-font-size;
.highlight {
background-color: $white;
}
+
+ p:first-child {
+ margin-top: 1rem;
+ }
+
// Override bootstrap
ol:last-child,
p:last-child,
ul:last-child {
margin: inherit;
+
+ li {
+ line-height: 1rem;
+ padding-top: .5rem;
+ }
}
}
@@ -342,7 +352,7 @@ h6 {
li {
&:not(.gl-breadcrumb-item) {
line-height: 1.6em;
- padding-bottom: 8px;
+ padding-bottom: .5rem;
ul li:first-of-type {
padding-top: 12px;
}