aboutsummaryrefslogtreecommitdiffhomepage
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-10-15 19:04:53 +0200
committerThomas Citharel <tcit@tcit.fr>2016-10-15 19:04:53 +0200
commitd32e1c424adb6722706245fe91071594a8c7c826 (patch)
treec85b1497e59cae53404ad9c176d02412d1dc66ca /Gruntfile.js
parent05c009bb853e12d263213298072325f63e3a1deb (diff)
downloadwallabag-d32e1c424adb6722706245fe91071594a8c7c826.tar.gz
wallabag-d32e1c424adb6722706245fe91071594a8c7c826.tar.zst
wallabag-d32e1c424adb6722706245fe91071594a8c7c826.zip
Fix baggy on small screens
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js18
1 files changed, 2 insertions, 16 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b80ab56d..72a407f9 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -10,10 +10,6 @@ module.exports = function (grunt) {
10 postcss: { 10 postcss: {
11 material: { 11 material: {
12 options: { 12 options: {
13 map: {
14 inline: false,
15 },
16
17 processors: [ 13 processors: [
18 require('pixrem')(), 14 require('pixrem')(),
19 require('autoprefixer')({ browsers: 'last 2 versions' }), 15 require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -25,10 +21,6 @@ module.exports = function (grunt) {
25 }, 21 },
26 baggy: { 22 baggy: {
27 options: { 23 options: {
28 map: {
29 inline: false,
30 },
31
32 processors: [ 24 processors: [
33 require('pixrem')(), 25 require('pixrem')(),
34 require('autoprefixer')({ browsers: 'last 2 versions' }), 26 require('autoprefixer')({ browsers: 'last 2 versions' }),
@@ -95,19 +87,13 @@ module.exports = function (grunt) {
95 files: { 87 files: {
96 '<%= releaseDir %>/themes/material/js/material.min.js': 88 '<%= releaseDir %>/themes/material/js/material.min.js':
97 ['<%= buildDir %>/material.browser.js'], 89 ['<%= buildDir %>/material.browser.js'],
98 }, 90 }
99 options: {
100 sourceMap: true,
101 },
102 }, 91 },
103 baggy: { 92 baggy: {
104 files: { 93 files: {
105 '<%= releaseDir %>/themes/baggy/js/baggy.min.js': 94 '<%= releaseDir %>/themes/baggy/js/baggy.min.js':
106 ['<%= buildDir %>/baggy.browser.js'], 95 ['<%= buildDir %>/baggy.browser.js'],
107 }, 96 }
108 options: {
109 sourceMap: true,
110 },
111 }, 97 },
112 }, 98 },
113 copy: { 99 copy: {