Skip to content

Commit

Permalink
feat(tile): radius and margin
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz authored and btry committed May 10, 2022
1 parent 529395a commit b5ce782
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -646,14 +646,14 @@ tr[data-itemtype="PluginFormcreatorCondition"] ~ tr[data-itemtype="PluginFormcre
}

.plugin_formcreator_formTile {
margin: 0 3px 6px 3px;
margin: 0 3px 17px 3px;
width: 300px;
display: inline-block;
vertical-align: top;
text-align: left;
overflow: hidden;
cursor: pointer;
border-radius: 0;
border-radius: 5px;
box-sizing: border-box;
animation-name: fadeInUp ;
animation-iteration-count: 1;
Expand Down
6 changes: 4 additions & 2 deletions js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,12 @@ function showTiles(tiles, defaultForms) {
$('#plugin_formcreator_wizard_forms').empty();
$('#plugin_formcreator_wizard_forms').prepend(html);
$('#plugin_formcreator_formlist').masonry({
horizontalOrder: true
horizontalOrder: true,
gutter: 10
});
$('#plugin_formcreator_faqlist').masonry({
horizontalOrder: true
horizontalOrder: true,
gutter: 10
});
}

Expand Down

0 comments on commit b5ce782

Please sign in to comment.