Adding clear:both after widgets - See #162

This commit is contained in:
koenemann 2016-12-22 09:12:18 +01:00
parent 21b6535327
commit 56b579bd76
4 changed files with 23 additions and 12 deletions

File diff suppressed because one or more lines are too long

15
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -228,13 +228,3 @@ gulp.task('dist', function() {
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!src','!src/**','!dist','!dist/**', '*'])
.pipe(gulp.dest('dist/'))
});
gulp.task('build', function(callback) {
runSequence('cleancss',
'copy-assets',
'sass',
'scripts',
'cssnano',
'dist',
callback);
});

View File

@ -168,3 +168,8 @@ button,
display: table;
clear: both;
}
// Clearing after widget
aside.widget{
clear:both;
}