update pure_grids with responsive sub-task

This commit is contained in:
Tilo Mitra 2014-02-28 12:56:50 -05:00
parent f21710aa90
commit be5576df51

View File

@ -199,6 +199,19 @@ grunt.initConfig({
options: {
units: [5, 24]
}
},
responsive: {
dest: 'build/grids-responsive.css',
options: {
mediaQueries: {
sm: 'screen and (min-width: 35.5em)', // 568px
md: 'screen and (min-width: 48em)', // 768px
lg: 'screen and (min-width: 64em)', // 1024px
xl: 'screen and (min-width: 80em)' // 1280px
}
}
}
},