File tree Expand file tree Collapse file tree 5 files changed +35
-0
lines changed Expand file tree Collapse file tree 5 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,22 @@ module.exports = {
56
56
"type" : "confirm" ,
57
57
"message" : "Do you need support for SVG sprites?"
58
58
} ,
59
+ "grid" : {
60
+ "type" : "list" ,
61
+ "message" : "Which grid system would you like?" ,
62
+ "choices" : [
63
+ {
64
+ "name" : "Jeet" ,
65
+ "value" : "jeet" ,
66
+ "short" : "jeet"
67
+ } ,
68
+ {
69
+ "name" : "LostGrid" ,
70
+ "value" : "lost" ,
71
+ "short" : "lost"
72
+ }
73
+ ]
74
+ } ,
59
75
"lint" : {
60
76
"type" : "confirm" ,
61
77
"message" : "Use ESLint to lint your code?" ,
Original file line number Diff line number Diff line change @@ -124,7 +124,12 @@ module.exports = {
124
124
} ,
125
125
stylus : {
126
126
use : [
127
+ { { #if_eq grid "jeet" } }
127
128
require ( 'jeet' ) ( ) ,
129
+ { { / if_eq } }
130
+ { { #if_eq grid "lost" } }
131
+ require ( 'poststylus' ) ( require ( 'lost' ) ( ) ) ,
132
+ { { / if_eq } }
128
133
require ( 'rupture' ) ( )
129
134
] ,
130
135
import : [
Original file line number Diff line number Diff line change 80
80
"stylus" : " ^0.54.5" ,
81
81
"stylus-loader" : " ^3.0.1" ,
82
82
"rupture" : " ^0.6.1" ,
83
+ {{#if_eq grid "jeet" }}
83
84
"jeet" : " ^7.0.1" ,
85
+ {{/if_eq }}
86
+ {{#if_eq grid "lost" }}
87
+ "poststylus" : " ^0.2.3" ,
88
+ "lost" : " ^7.1.1" ,
89
+ {{/if_eq }}
84
90
"typus" : " ^0.0.3" ,
85
91
{{#svg }}
86
92
"svg-sprite-loader" : " 0.0.29" ,
Original file line number Diff line number Diff line change @@ -61,11 +61,17 @@ export default {
61
61
@import "styles/theme"
62
62
63
63
html
64
+ { { #if_eq grid "lost"} }
65
+ lost-align middle - center // lostgrid
66
+ height 100%
67
+ { { /if_eq} }
64
68
+ below (600px ) // rupture
65
69
font-size 50%
66
70
67
71
#app
72
+ { { #if_eq grid "jeet"} }
68
73
align () // jeet
74
+ { { /if_eq} }
69
75
text-align center
70
76
71
77
.icon-logo
Original file line number Diff line number Diff line change 1
1
// This file is injected in every components
2
2
// Use it wisely ;)
3
+ { { #if_eq grid "jeet"} }
3
4
@import "jeet"
5
+ { { /if_eq} }
4
6
@import "rupture"
5
7
6
8
@import "theme/variables"
You can’t perform that action at this time.
0 commit comments