We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eacfeb commit fdff361Copy full SHA for fdff361
src/containers/post/RelatedPostsForGuest.tsx
@@ -80,7 +80,7 @@ function RelatedPostsForGuest({
80
<h4>관심 있을 만한 포스트</h4>
81
{postsWithAds.map((post, index) => {
82
return post ? (
83
- <Row>
+ <Row style={{ marginBottm: '-1.5rem' }}>
84
<StyledRowLink
85
to={`/@${post.user.username}/${post.url_slug}`}
86
key={post.id ?? index}
@@ -143,7 +143,7 @@ function RelatedPostsForGuest({
143
</StyledLink>
144
</Item>
145
) : (
146
- <Item style={{ marginBottom: '-3.375rem' }}>
+ <Item style={{ marginBottom: '-0.75rem' }}>
147
<RelatedPostAd />
148
149
),
@@ -202,6 +202,7 @@ const Item = styled.div`
202
}
203
204
h5 {
205
+ height: 3rem;
206
font-size: 1rem;
207
line-height: 1.5;
208
margin-top: 0.5rem;
0 commit comments