mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
import { keyframes } from './stitches.config'
|
|
|
|
export function expandWidthAnim(startWidth: string, endWidth: string): unknown {
|
|
return keyframes({
|
|
from: { width: startWidth },
|
|
to: { width: endWidth }
|
|
})
|
|
}
|
|
|
|
export function slideUpAnim(startBottom: string, endBottom: string): unknown {
|
|
return keyframes({
|
|
from: { bottom: startBottom },
|
|
to: { bottom: endBottom },
|
|
})
|
|
}
|