Skip to content

Commit 840d816

Browse files
authored
Merge pull request #423 from skaut/blog-fix
Fixed GP bottom margin
2 parents 72bcf8d + 678d616 commit 840d816

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/php/frontend/blog.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ function blog_css() {
7474
'padding-left: ' . $separator . 'px;' .
7575
'}' .
7676
'.generate-columns-container {' .
77+
'margin-bottom: ' . $separator . 'px;' .
7778
'margin-left: -' . $separator . 'px;' .
7879
'}' .
7980
'.crdm-modern-excerpt {' .

src/ts/admin/customizer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,10 @@ liveReload( 'generate_spacing_settings[separator]', [
199199
},
200200
{
201201
selector: '.generate-columns-container',
202-
properties: [ { name: 'margin-left', prefix: '-', postfix: 'px' } ],
202+
properties: [
203+
{ name: 'margin-bottom', postfix: 'px' },
204+
{ name: 'margin-left', prefix: '-', postfix: 'px' },
205+
],
203206
},
204207
{
205208
selector: '.crdm-modern-excerpt',

0 commit comments

Comments
 (0)