diff --git a/app/assets/stylesheets/app.scss b/app/assets/stylesheets/app.scss index f8ae0c7de..439a4543b 100644 --- a/app/assets/stylesheets/app.scss +++ b/app/assets/stylesheets/app.scss @@ -111,4 +111,12 @@ td { .form-label { margin-bottom: 5px; +} + +a[rel="external"] { + @include external-link-default; + @include external-link-16; + @include media(tablet) { + @include external-link-19; + } } \ No newline at end of file diff --git a/gulpfile.babel.js b/gulpfile.babel.js index b5470e712..a6eb6f56b 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -30,9 +30,12 @@ gulp.task('copy:govuk_template:template', () => gulp.src(paths.template + 'views ); gulp.task('copy:govuk_template:css', () => gulp.src(paths.template + 'assets/stylesheets/**/*.css') - .pipe(plugins.sass({outputStyle: 'compressed'})) + .pipe(plugins.sass({ + outputStyle: 'compressed' + })) + .on('error', plugins.sass.logError) .pipe(plugins.cssUrlAdjuster({ - prependRelative: '/static/', + prependRelative: '/static/images/', })) .pipe(gulp.dest(paths.dist + 'stylesheets/')) );