Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6661efc

Browse files
committedNov 29, 2016
Fix headers offsets
1 parent 5e69985 commit 6661efc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎assets/css/styles.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,11 @@ UL, LI {
240240
margin-left: 3rem;
241241
font-size: 1.5em; }
242242
.gnr-message__content--headers-tree H4 {
243-
margin-left: 3rem;
243+
margin-left: 4rem;
244244
font-size: 1.25em; }
245245
.gnr-message__content--headers-tree H5 {
246-
margin-left: 4rem;
246+
margin-left: 5rem;
247247
font-size: 1em; }
248248
.gnr-message__content--headers-tree H6 {
249-
margin-left: 5rem;
249+
margin-left: 6rem;
250250
font-size: .75em; }

‎src/scss/styles.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -295,15 +295,15 @@ UL, LI {
295295
font-size: 1.5em;
296296
}
297297
H4 {
298-
margin-left: 3rem;
298+
margin-left: 4rem;
299299
font-size: 1.25em;
300300
}
301301
H5 {
302-
margin-left: 4rem;
302+
margin-left: 5rem;
303303
font-size: 1em;
304304
}
305305
H6 {
306-
margin-left: 5rem;
306+
margin-left: 6rem;
307307
font-size: .75em;
308308
}
309309
}

0 commit comments

Comments
 (0)
Please sign in to comment.