diff --git a/src/components/containers/Filler/index.tsx b/src/components/containers/Filler/index.tsx index 2f40c037..3af36783 100644 --- a/src/components/containers/Filler/index.tsx +++ b/src/components/containers/Filler/index.tsx @@ -4,15 +4,6 @@ import * as styles from './styles.scss'; type IProps = React.HTMLAttributes; -export const Filler: FC = ({ - className = '', - ...props -}) => ( -
+export const Filler: FC = ({ className = '', ...props }) => ( +
); diff --git a/src/components/flow/FlowHero/index.tsx b/src/components/flow/FlowHero/index.tsx index d01896a4..552cd999 100644 --- a/src/components/flow/FlowHero/index.tsx +++ b/src/components/flow/FlowHero/index.tsx @@ -46,7 +46,7 @@ const FlowHeroUnconnected: FC = ({ heroes, history }) => { }, [loaded, current, setCurrent, timer]); useEffect(() => { - timer.current = setTimeout(onNext, 3000); + timer.current = setTimeout(onNext, 5000); return () => clearTimeout(timer.current); }, [current]); @@ -61,7 +61,7 @@ const FlowHeroUnconnected: FC = ({ heroes, history }) => { const stopSliding = useCallback(() => { clearTimeout(timer.current); - timer.current = setTimeout(onNext, 3000); + timer.current = setTimeout(onNext, 5000); }, [timer, onNext]); const onClick = useCallback(() => { diff --git a/src/components/flow/FlowHero/styles.scss b/src/components/flow/FlowHero/styles.scss index ef265d54..2643864e 100644 --- a/src/components/flow/FlowHero/styles.scss +++ b/src/components/flow/FlowHero/styles.scss @@ -13,7 +13,7 @@ width: 100%; height: 100%; display: none; - transition: opacity 1s; + transition: opacity 2s; background: 50% 50% no-repeat; background-size: cover; border-radius: $cell_radius;