Skip to content

Commit b5ce782

Browse files
stonebuzzbtry
authored andcommitted
feat(tile): radius and margin
1 parent 529395a commit b5ce782

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

css/styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,14 +646,14 @@ tr[data-itemtype="PluginFormcreatorCondition"] ~ tr[data-itemtype="PluginFormcre
646646
}
647647

648648
.plugin_formcreator_formTile {
649-
margin: 0 3px 6px 3px;
649+
margin: 0 3px 17px 3px;
650650
width: 300px;
651651
display: inline-block;
652652
vertical-align: top;
653653
text-align: left;
654654
overflow: hidden;
655655
cursor: pointer;
656-
border-radius: 0;
656+
border-radius: 5px;
657657
box-sizing: border-box;
658658
animation-name: fadeInUp ;
659659
animation-iteration-count: 1;

js/scripts.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,12 @@ function showTiles(tiles, defaultForms) {
302302
$('#plugin_formcreator_wizard_forms').empty();
303303
$('#plugin_formcreator_wizard_forms').prepend(html);
304304
$('#plugin_formcreator_formlist').masonry({
305-
horizontalOrder: true
305+
horizontalOrder: true,
306+
gutter: 10
306307
});
307308
$('#plugin_formcreator_faqlist').masonry({
308-
horizontalOrder: true
309+
horizontalOrder: true,
310+
gutter: 10
309311
});
310312
}
311313

0 commit comments

Comments
 (0)