-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptsSchema.json
38 lines (38 loc) · 1.05 KB
/
optsSchema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"type": "object",
"description": "Options passed to the postcss-bootstrap-4-grid plugin.",
"properties": {
"gridColumns": {
"description": "The number of column units to generate CSS for.",
"type": "number",
"minimum": 2,
"maximum": 48
},
"gridGutterWidth": {
"description":
"A CSS value (with a unit) representing the distance between columns.",
"type": "string",
"maxLength": 128
},
"containerMaxWidths": {
"description":
"The maximum widths of a container at a set of breakpoints.",
"type": "object"
},
"gridBreakpoints": {
"description":
"A set of breakpoints for generating different layouts at differing view widths.",
"type": "object"
},
"doOrderClasses": {
"description":
"Set to true to generate the classes that handle flexbox order.",
"type": "boolean"
},
"doOffsetClasses": {
"description":
"Set to true to generate the classes handling column offsets.",
"type": "boolean"
}
}
}