Skip to content

Commit

Permalink
Merge fc6f27e into 09789d9
Browse files Browse the repository at this point in the history
  • Loading branch information
mistergone committed Sep 17, 2018
2 parents 09789d9 + fc6f27e commit b3ff626
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
10 changes: 9 additions & 1 deletion gulp/tasks/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@ gulp.task( 'styles:ie', function() {
.pipe( gulp.dest( configStyles.dest ) );
} );

gulp.task( 'styles:icon-fonts', function() {
let static = 'paying_for_college/static/paying_for_college/disclosures/static/';
return gulp.src( './node_modules/cf-icons/src/fonts/*' )
.pipe( gulp.dest( static + 'fonts/' ) );
} );


gulp.task( 'styles', gulp.parallel(
'styles:modern',
'styles:ie'
'styles:ie',
'styles:icon-fonts'
) );
4 changes: 4 additions & 0 deletions src/disclosures/css/disclosures.less
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
padding-top: 0;
padding-bottom: 0;

button.a-btn.a-btn__link {
border-bottom: none;
}

// Overrides a style bleeding in from footer.css/header.css
p:last-child {
margin-bottom: 15px;
Expand Down

0 comments on commit b3ff626

Please sign in to comment.