Skip to content

Commit

Permalink
fix #189 : 영수증 항목이 많아지면 영수증에 검은 줄이 생기는 문제 해결
Browse files Browse the repository at this point in the history
영수증 텍스쳐 이미지보다 영수증이 커질 경우 텍스쳐 이미지가 repeat 되면서 사이에 빈 틈이 생겨 백그라운드의 검정색이 나타나는 문제였습니다. 영수증 텍스쳐가 영수증 사이즈만큼 덮을 수 있게 하여 해결하였습니다.
  • Loading branch information
jayjeong8 committed Dec 21, 2022
1 parent 79ee06b commit 9ec1e88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Paper = styled(Center)`
letter-spacing: -0.5px;
line-height: 1.4;
color: #2f2f2f;
background: url(${paperTexture});
background: url(${paperTexture}) no-repeat center/cover; ;
`;

export const Title = styled.h1`
Expand Down

0 comments on commit 9ec1e88

Please sign in to comment.