mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-29 02:24:02 +02:00
5 lines
No EOL
228 B
TypeScript
5 lines
No EOL
228 B
TypeScript
export const getPaneClasses = (isActive: boolean, otherIsActive: boolean) => [
|
|
"transition-all duration-300",
|
|
isActive ? "scale-[1.02] shadow-xl relative z-10" : "",
|
|
otherIsActive ? "scale-[0.98] opacity-50" : ""
|
|
];
|