Skip to content

Commit

Permalink
Merge branch 'release/4.1.4'
Browse files Browse the repository at this point in the history
* release/4.1.4:
  minor updates to the default template blockquote styling
  • Loading branch information
austintoddj committed Mar 1, 2019
2 parents 2cb52e8 + 9009db2 commit ac69b13
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/js/app.js": "/js/app.js?id=af6689c6964800e9f755",
"/js/app.js": "/js/app.js?id=5bbb9283dc01ec0b61be",
"/css/app.css": "/css/app.css?id=f13a10a1564f49e2b5f0",
"/js/app.js.map": "/js/app.js.map?id=159ebb8d695d07b48e9d",
"/js/app.js.map": "/js/app.js.map?id=7c7b67d101e75b9a8a40",
"/favicon.png": "/favicon.png?id=39d853e8c2bdbc38fde3"
}
60 changes: 59 additions & 1 deletion stubs/views/blog/partials/styles.stub
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,68 @@
overflow-y: visible !important;
}

.content-body .h1,
.content-body .h2,
.content-body .h3,
.content-body .h4,
.content-body .h5,
.content-body .h6,
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
margin-top: 2.75rem;
margin-bottom: 1rem;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
color: inherit
}

.content-body .h1,
.content-body h1 {
font-size: 2.25rem
}

.content-body .h2,
.content-body h2 {
font-size: 1.8rem
}

.content-body .h3,
.content-body h3 {
font-size: 1.575rem
}

.content-body .h4,
.content-body h4 {
font-size: 1.35rem
}

.content-body .h5,
.content-body h5 {
font-size: 1.125rem
}

.content-body .h6,
.content-body h6 {
font-size: .9rem
}

.content-body blockquote {
margin-top: 2em;
margin-bottom: 2em;
font-style: italic;
border-left: 4px solid #ccc;
padding-left: 16px;
}

.content-body .embedded_image img {
max-width: 100%;
height: auto;
margin: 0 auto;
margin-bottom: 30px;
display: block;
}

Expand Down

0 comments on commit ac69b13

Please sign in to comment.