Skip to content
Snippets Groups Projects
Commit 2a45f711 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Home: logo not visible - fix #517

parent 380a523b
No related branches found
No related tags found
No related merge requests found
......@@ -65,10 +65,11 @@ gulp.task('sass', ['sass-images'], function(done) {
gulp.src('./scss/ionic.app.scss')
.pipe(sass()).on('error', sass.logError)
.pipe(base64({
baseDir: "./www/css",
extensions: ['svg', 'png', 'gif', /\.jpg#datauri$/i],
maxImageSize: 14 * 1024
}))
baseDir: "./www/css",
extensions: ['svg', 'png', /\.jpg#datauri$/i],
maxImageSize: 14 * 1024,
debug: true
}))
.pipe(gulp.dest('./www/css/'))
.pipe(cleanCss({
keepSpecialComments: 0
......@@ -88,7 +89,7 @@ gulp.task('sass', ['sass-images'], function(done) {
.pipe(replace("url(images/", "url(../img/"))
.pipe(base64({
baseDir: "./www/css/",
extensions: ['svg', 'png', 'gif', /\.jpg#datauri$/i],
extensions: ['png', 'gif', /\.jpg#datauri$/i],
maxImageSize: 14 * 1024,
deleteAfterEncoding: true
}))
......
......@@ -729,7 +729,7 @@ $screen-menu: 845px;
@media screen and (min-width: $screen-md) {
#home .logo {
height: 200px;
background-image: url('../../resources/logo/svg/colors/logo.large.cesium.dune.svg');
background-image: url('../img/logo_200px.png');
background-size: 200px 200px;
}
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
www/img/logo_200px.png

22.9 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment