Browse Source

fixed gulp and search bar width

master
rdrew 2 years ago
parent
commit
eca5bd95a4
  1. 1
      css/sass/_components.scss
  2. 2
      css/sass/style.scss
  3. 1
      css/style.css
  4. 2
      css/style.css.map
  5. 1274
      css/style.css.old
  6. 6
      gulpfile.js

1
css/sass/_components.scss

@ -42,6 +42,7 @@ form#views-exposed-form-dataset-search-page-1 {
input#edit-search-api-fulltext {
height: 54px;
width:100%;
}
/* Components -> Social icons */
.footer-social {

2
css/sass/style.scss

@ -1,4 +1,4 @@
.test-class {
.test-class2 {
}
@import 'modularscale';
$modularscale: (

1
css/style.css

@ -820,6 +820,7 @@ form#views-exposed-form-dataset-search-page-1 {
input#edit-search-api-fulltext {
height: 54px;
width: 100%;
}
/* Components -> Social icons */

2
css/style.css.map

File diff suppressed because one or more lines are too long

1274
css/style.css.old

File diff suppressed because it is too large Load Diff

6
gulpfile.js

@ -62,7 +62,8 @@ function drush() {
function styles() {
'use strict';
return gulp
.src(PATHS.Scss.Dir + '/**/*.scss')
//.src(PATHS.Scss.Dir + '/**/*.scss')
.src('./css/sass/**/*.scss')
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(
@ -73,7 +74,8 @@ function styles() {
.on('error', sass.logError)
)
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(PATHS.Css.Dir))
//.pipe(gulp.dest(PATHS.Css.Dir))
.pipe(gulp.dest('./css'))
.pipe(browsersync.stream());
}

Loading…
Cancel
Save