Skip to content

Commit

Permalink
[ALL] fix: 프론트엔드 버그를 수정한다.
Browse files Browse the repository at this point in the history
[ALL] fix: 프론트엔드 버그를 수정한다.
  • Loading branch information
2yunseong committed Nov 7, 2023
2 parents 7665daa + 5fed68c commit d82bf31
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,23 @@ export const MaxStampCount = styled.span`
font-size: 24px;
color: #f3b209;
`;

export const BackDrop = styled.div<{ $couponMainColor: string }>`
z-index: -10;
width: 100%;
max-width: 450px;
overflow: hidden;
height: 100%;
position: absolute;
top: 0;
right: 0;
background: linear-gradient(
white,
rgba(255, 255, 255, 0.5) 32%,
${({ $couponMainColor }) => $couponMainColor} 80%,
white
);
opacity: 0.7;
left: 50%;
transform: translateX(-50%);
`;

0 comments on commit d82bf31

Please sign in to comment.