Blockquote styling (fixes #9476) (#12227)

* Added blockquote styling based on Zeplin example

* Commit new changes to style blockquotes

* Fix bottom of post margins after markdown class addition
This commit is contained in:
citrusella
2020-06-07 06:52:01 -04:00
committed by GitHub
parent d7fe140012
commit eae8ed946f
3 changed files with 7 additions and 4 deletions

View File

@@ -41,4 +41,9 @@
img {
max-width: 100%;
}
blockquote {
padding: 0 16px;
border-left: 4px solid #e1e0e3;
}
}

View File

@@ -33,7 +33,7 @@
</p>
<div
ref="markdownContainer"
class="text"
class="text markdown"
v-html="parseMarkdown(msg.text)"
></div>
<hr>
@@ -166,7 +166,6 @@
color: #4e4a57;
text-align: left !important;
min-height: 0rem;
margin-bottom: -0.5rem;
}
}

View File

@@ -20,7 +20,7 @@
<span v-if="msg.client && user.contributor.level >= 4"> ({{ msg.client }})</span>
</p>
<div
class="text"
class="text markdown"
v-html="parseMarkdown(msg.text)"
></div>
<div
@@ -120,7 +120,6 @@
color: $gray-50;
text-align: left !important;
min-height: 0rem;
margin-bottom: -0.5rem;
}
}