Commit b94eaa48e291a30e53650f379295f55994356e25

Authored by Pablo Marco del Pont
1 parent 96e13084df
Exists in master

Cambios de estilo para botonera secundaria.

Showing 2 changed files with 13 additions and 3 deletions   Show diff stats
... ... @@ -11,7 +11,7 @@ const watch = require('gulp-watch');
11 11  
12 12 var paths = {
13 13 srcHTML : 'src/views/*.html',
14   - srcJS : 'src/**/*.js',
  14 + srcJS : 'src/js/*.js',
15 15 dist : 'dist/',
16 16 distHTML : 'dist/views/'
17 17 };
... ... @@ -73,8 +73,8 @@ gulp.task('webserver', function() {
73 73 });
74 74  
75 75 gulp.task('watch', function() {
76   - gulp.watch(archivosJS, ['uglify']);
77   - gulp.watch('css/scss/*.scss', ['sass']);
  76 + gulp.watch([paths.srcJS], ['uglify']);
  77 + gulp.watch('src/sass/*.scss', ['sass']);
78 78 })
79 79  
80 80 gulp.task('reload'), function() {
src/sass/_botonera-secundaria.scss
1 1 .botonera-secundaria {
2 2 background-color: rgba(0, 0, 0, 0.8);
  3 + .row {
  4 + border-radius: 5px;
  5 + overflow: hidden;
  6 + }
  7 + .btn {
  8 + border-radius: 0;
  9 + margin-right: 1px;
  10 + width: calc(100% - 1px);
  11 + margin-bottom: 1px;
  12 + }
3 13 }