-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
22 lines (21 loc) · 748 Bytes
/
index.js
File metadata and controls
22 lines (21 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = function () {
return function({ addUtilities }) {
const sketchyBorders = {
'.border-sketchy-sm': {
borderRadius: '255px 25px 225px 25px/25px 225px 25px 255px',
transition: 'all 0.3s ease-in-out'
},
'.border-sketchy-md': {
borderRadius: '25px 55px 10px 45px/85px 20px 55px 20px',
transition: 'all 0.3s ease-in-out'
},
'.border-sketchy-lg': {
borderRadius: '5px 55px 25px 25px/85px 20px 55px 20px',
transition: 'all 0.3s ease-in-out'
},
}
addUtilities(sketchyBorders, {
variants: ['responsive', 'hover'],
})
}
}