mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-19 13:52:12 +00:00
fix(Calendar): add missing route animation
This commit is contained in:
parent
9c2cc0e7ff
commit
7f068a2fcc
1 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ import Placeholder from './Placeholder';
|
|||
import useCalendar from './useCalendar';
|
||||
import useCalendarDate from './useCalendarDate';
|
||||
import styles from './Calendar.less';
|
||||
import classNames from 'classnames';
|
||||
|
||||
type Props = {
|
||||
urlParams: UrlParams,
|
||||
|
|
@ -34,7 +35,7 @@ const Calendar = ({ urlParams }: Props) => {
|
|||
<MainNavBars className={styles['calendar']} route={'calendar'}>
|
||||
{
|
||||
profile.auth !== null ?
|
||||
<div className={styles['content']}>
|
||||
<div className={classNames(styles['content'], 'animation-fade-in')}>
|
||||
<div className={styles['main']}>
|
||||
<Selector
|
||||
selected={calendar.selected}
|
||||
|
|
|
|||
Loading…
Reference in a new issue