Skip to content

Commit

Permalink
fix: lint 수정
Browse files Browse the repository at this point in the history
spearStr committed Dec 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent d640193 commit 95bc81c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/main/MainReplaySection.tsx
Original file line number Diff line number Diff line change
@@ -76,12 +76,12 @@ const MainSectionContentList = styled.div<{ $textStatus: string }>`
@media (max-width: 1700px) {
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
max-height: ${({ $textStatus }) =>
$textStatus === VIDEO_VIEW.MORE_VIEW ? 'calc(2 * (320px + 30px) - 30px)' : 'none'};
$textStatus === VIDEO_VIEW.MORE_VIEW ? 'calc(2 * (320px + 30px) - 30px)' : 'none'};
}
@media (max-width: 1500px) {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
max-height: ${({ $textStatus }) =>
$textStatus === VIDEO_VIEW.MORE_VIEW ? 'calc(2 * (300px + 30px) - 30px)' : 'none'};
$textStatus === VIDEO_VIEW.MORE_VIEW ? 'calc(2 * (300px + 30px) - 30px)' : 'none'};
}
`;

0 comments on commit 95bc81c

Please sign in to comment.