diff --git a/gulpfile.js b/gulpfile.js index 3f8eb78..9e455d2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,7 @@ const watch = require('gulp-watch'); var paths = { srcHTML : 'src/views/*.html', - srcJS : 'src/**/*.js', + srcJS : 'src/js/*.js', dist : 'dist/', distHTML : 'dist/views/' }; @@ -73,8 +73,8 @@ gulp.task('webserver', function() { }); gulp.task('watch', function() { - gulp.watch(archivosJS, ['uglify']); - gulp.watch('css/scss/*.scss', ['sass']); + gulp.watch([paths.srcJS], ['uglify']); + gulp.watch('src/sass/*.scss', ['sass']); }) gulp.task('reload'), function() { diff --git a/src/sass/_botonera-secundaria.scss b/src/sass/_botonera-secundaria.scss index 340937a..3a69e6a 100644 --- a/src/sass/_botonera-secundaria.scss +++ b/src/sass/_botonera-secundaria.scss @@ -1,3 +1,13 @@ .botonera-secundaria { background-color: rgba(0, 0, 0, 0.8); + .row { + border-radius: 5px; + overflow: hidden; + } + .btn { + border-radius: 0; + margin-right: 1px; + width: calc(100% - 1px); + margin-bottom: 1px; + } }