I've now switched my project to v6.0.2 and noticed a couple of issues.
I've noticed the below bugs in the SCSS compared to the raw CSS you provided in the samples. Can I confirm that your samples generate css from the scss or are they separately derived?
1). _widgets.scss on line 31-34 targeting > h4 uses the wrong variable for font-size, it is currently set to the variable for weight. it should be $widget-title-font-size not $widget-title-font-weight
2). When compiling the feature box - Background in the _feature-box.scss on line 378 the targeting for &-icon is incorrect. The resultant output comes out as .fbox-bg.fbox-center.fbox-icon when it should be .fbox-bg.fbox-center .fbox-icon (with a space). This means the feature box margin-top is not being set.
3). On the movers demo the form boxes are set to display:none and hence not appearing. This seems to be due to line 285 in _tabs.scss which sets .tab-content:not(:first-child) to display: none;
On the JS side of things:
4). Why has plugins.js being reintroduced after being culled in favor of lazy loading plugins when required from functions.js? surely this is a step backwards to v5.* should the demo's not be reflective of the new way of doing things?
