Skip to content

Commit 62ceec8

Browse files
committed
Some fixes
1 parent 01387d9 commit 62ceec8

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

block/pricing-table/_block.scss

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22
&__row {
33
@include _row();
44
border: 1px solid _lighter($_color-gray);
5+
6+
@include _media-min(md) {
7+
flex-wrap: nowrap;
8+
}
59
}
610

711
&__col {
8-
@include _row__col();
12+
@include _row__col(1, 1);
13+
14+
@include _media-min(md) {
15+
@include _row__col--width(1);
16+
}
917

1018
&:not(:first-child) {
1119
border-left: 1px solid _lighter($_color-gray);

block/section-has-items/_block.scss

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
&__action {
2121
@include _margin-top(.5);
22+
text-align: center;
2223
}
2324
}
2425
}

block/section-has-items/block.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ registerBlockType('snow-monkey-awesome-custom-blocks/section-has-items', {
4242
btnBackgroundColor: '',
4343
btnTextColor: '',
4444
imageID: '',
45-
imageURL: '',
45+
imageURL: smacb.pluginURL + 'block/section-has-items/image.png',
4646
}
4747
]
4848
}

snow-monkey-awesome-custom-blocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Plugin name: Snow Monkey Awesome Custom Blocks
4-
* Version: 0.3.0
4+
* Version: 0.3.1
55
* Text Domain: snow-monkey-awesome-custom-blocks
66
* Domain Path: /languages/
77
*

0 commit comments

Comments
 (0)