-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (39 loc) · 803 Bytes
/
index.js
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
39
module.exports = function () {
return function({ addUtilities }) {
addUtilities({
'.offset-1': {
marginLeft: '8.33333333%'
},
'.offset-2': {
marginLeft: '16.66666%'
},
'.offset-3': {
marginLeft: '25%'
},
'.offset-4': {
marginLeft: '33.33333333%'
},
'.offset-5': {
marginLeft: '41.66666667%'
},
'.offset-6': {
marginLeft: '50%'
},
'.offset-7': {
marginLeft: '58.33333333%'
},
'.offset-8': {
marginLeft: '66.66666667%'
},
'.offset-9': {
marginLeft: '75%'
},
'.offset-10': {
marginLeft: '83.33333333%'
},
'.offset-11': {
marginLeft: '91.66666667%'
},
}, ['responsive'])
}
}