This commit is contained in:
Kakabay 2023-02-21 18:50:46 +05:00
parent e48abb3f98
commit bfa407dc08
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { Variants } from 'framer-motion';
export const paginationMotion: Variants = {
rest: {
border: 'rgba(56,163,157, 0) 0.1rem solid',
color: '#272727',
background: '#fff',
// fontWeight: 'normal',
type: 'spring',
},
active: {
border: 'rgba(56,163,157, 1) 0.1rem solid',
color: '#ffffff',
background: '#38a39d',
// fontWeight: 'bold',
type: 'spring',
},
};