mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 13:30:00 -04:00
30 lines
421 B
TypeScript
30 lines
421 B
TypeScript
const tabContentVariant = {
|
|
active: {
|
|
display: "block",
|
|
transition: {
|
|
staggerChildren: 0.2
|
|
}
|
|
},
|
|
inactive: {
|
|
display: "none"
|
|
}
|
|
};
|
|
|
|
const settingsPageVariant = {
|
|
active: {
|
|
opacity: 1,
|
|
y: 0,
|
|
transition: {
|
|
duration: 0.5
|
|
}
|
|
},
|
|
inactive: {
|
|
opacity: 0,
|
|
y: 10,
|
|
transition: {
|
|
duration: 0.5
|
|
}
|
|
}
|
|
};
|
|
|
|
export { settingsPageVariant, tabContentVariant };
|