Skip to content

Commit

Permalink
fix: mobile is *it
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsinri committed Sep 5, 2023
1 parent f7c02d6 commit ab463fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/card/StreamingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const StreamingCard = React.memo<StreamingCardProps>(
name={name}
icon={icon}
isExpand={config.isExpandAlways || expand || hovered}
hovered={hovered}
hovered={!isMobile && hovered}
/>
</Card>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion src/components/marquee/MarqueeForMobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const MarqueeForMobile: React.FC<Props> = ({

const reset = () => {
animation.start({
to: {
from: {
x: "0%",
},
immediate: true,
Expand Down

0 comments on commit ab463fe

Please sign in to comment.