Skip to content

Commit eba1de8

Browse files
committed
Merge branch 'feature/grid-home' into develop
2 parents 87d86a9 + 9251d1f commit eba1de8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/components/common/PostCard.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ const Block = styled.div`
150150
overflow: hidden;
151151
display: flex;
152152
flex-direction: column;
153+
${mediaQuery(944)} {
154+
width: calc(50% - 2rem);
155+
}
153156
${mediaQuery(767)} {
154157
margin: 0;
155158
width: 100%;

src/components/common/RoundButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ const RoundButton: React.FC<RoundButtonProps> = ({
9898
color = 'teal',
9999
size = 'DEFAULT',
100100
border = false,
101-
className,
102101
...rest
103102
}) => {
104103
if (to) {

src/components/home/HomeResponsive.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Block = styled.div`
2525
width: 912px;
2626
}
2727
${mediaQuery(944)} {
28-
width: 672px;
28+
width: calc(100% - 2rem);
2929
}
3030
${mediaQuery(767)} {
3131
width: calc(100% - 2rem);

0 commit comments

Comments
 (0)