animation toast
This commit is contained in:
@@ -21,6 +21,20 @@ module.exports = withMT({
|
||||
},
|
||||
borderRadius: {
|
||||
'2.5': '10px'
|
||||
},
|
||||
keyframes: {
|
||||
'slide-in-right': {
|
||||
'0%': { transform: 'translateX(100%)', opacity: '0' },
|
||||
'100%': { transform: 'translateX(0)', opacity: '1' }
|
||||
},
|
||||
'slide-out-right': {
|
||||
'0%': { transform: 'translateX(0)', opacity: '1' },
|
||||
'100%': { transform: 'translateX(100%)', opacity: '0' }
|
||||
}
|
||||
},
|
||||
animation: {
|
||||
'slide-in-right': 'slide-in-right 0.3s ease-out',
|
||||
'slide-out-right': 'slide-out-right 0.3s ease-out'
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user