Skip to content

Commit

Permalink
[WNMGDS] - Change doc site block quote styling (#525)
Browse files Browse the repository at this point in the history
* Update blockquote styles

* Remove font-size. It's not needed
  • Loading branch information
line47 authored Oct 29, 2019
1 parent e047bc2 commit bf8a769
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions packages/docs/src/styles/base/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
blockquote {
background: $color-primary-alt-lightest;
border-left: 2px solid $color-primary-alt-light;
background-color: $color-gray-lightest;
border-left: 4px solid $color-gray-light;
font-family: $font-sans;
font-style: italic;
margin-left: 0;
padding: $spacer-2;
padding-left: $spacer-6;
position: relative;


&::before {
color:$color-gray-light;
content: '\201C';
font-family: $font-serif;
font-size:4em;
left: 10px;
position: absolute;
top:-10px;
}

p:first-child {
margin-top: 0;
Expand Down

0 comments on commit bf8a769

Please sign in to comment.