1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Fix baggy on small screens

This commit is contained in:
Thomas Citharel 2016-10-15 19:04:53 +02:00
parent 05c009bb85
commit d32e1c424a
11 changed files with 28 additions and 42 deletions

View file

@ -10,10 +10,6 @@ module.exports = function (grunt) {
postcss: {
material: {
options: {
map: {
inline: false,
},
processors: [
require('pixrem')(),
require('autoprefixer')({ browsers: 'last 2 versions' }),
@ -25,10 +21,6 @@ module.exports = function (grunt) {
},
baggy: {
options: {
map: {
inline: false,
},
processors: [
require('pixrem')(),
require('autoprefixer')({ browsers: 'last 2 versions' }),
@ -95,19 +87,13 @@ module.exports = function (grunt) {
files: {
'<%= releaseDir %>/themes/material/js/material.min.js':
['<%= buildDir %>/material.browser.js'],
},
options: {
sourceMap: true,
},
}
},
baggy: {
files: {
'<%= releaseDir %>/themes/baggy/js/baggy.min.js':
['<%= buildDir %>/baggy.browser.js'],
},
options: {
sourceMap: true,
},
}
},
},
copy: {