From b94eaa48e291a30e53650f379295f55994356e25 Mon Sep 17 00:00:00 2001 From: Pablo Marco del Pont Date: Fri, 26 Oct 2018 11:20:04 -0300 Subject: [PATCH] Cambios de estilo para botonera secundaria. --- gulpfile.js | 6 +++--- src/sass/_botonera-secundaria.scss | 10 ++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) 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; + } } -- 1.9.1