Adding clear:both after widgets - See #162
This commit is contained in:
parent
21b6535327
commit
56b579bd76
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
10
gulpfile.js
10
gulpfile.js
|
@ -228,13 +228,3 @@ gulp.task('dist', function() {
|
||||||
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!src','!src/**','!dist','!dist/**', '*'])
|
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!src','!src/**','!dist','!dist/**', '*'])
|
||||||
.pipe(gulp.dest('dist/'))
|
.pipe(gulp.dest('dist/'))
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('build', function(callback) {
|
|
||||||
runSequence('cleancss',
|
|
||||||
'copy-assets',
|
|
||||||
'sass',
|
|
||||||
'scripts',
|
|
||||||
'cssnano',
|
|
||||||
'dist',
|
|
||||||
callback);
|
|
||||||
});
|
|
||||||
|
|
|
@ -168,3 +168,8 @@ button,
|
||||||
display: table;
|
display: table;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clearing after widget
|
||||||
|
aside.widget{
|
||||||
|
clear:both;
|
||||||
|
}
|
Reference in New Issue