Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix search feed component bug and card size #5

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
apple a fix by Specifying Variants in Typography tag of channel title…
… for responsive size gives an error
  • Loading branch information
fatkungfu authored Aug 30, 2022
commit a307a1c8d2672092c1cca1dbf2cb47a07fdc2c91
2 changes: 1 addition & 1 deletion src/components/VideoDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const VideoDetail = () => {
</Typography>
<Stack direction="row" justifyContent="space-between" sx={{ color: '#fff' }} py={1} px={2}>
<Link to={`/channel/${channelId}`}>
<Typography variant={{ sm: 'subtitle1', md: 'h6' }} color="#fff">
<Typography sx={{typography: { sm: 'subtitle1', md: 'h6' }}} color='#fff'>
{channelTitle}
<CheckCircleIcon sx={{ fontSize: '12px', color: 'gray', ml: '5px' }} />
</Typography>
Expand Down