Skip to content

Commit

Permalink
Merge pull request #153 from MeeTeamNumdle/release-1.0
Browse files Browse the repository at this point in the history
fix: 토스트 UI 로직 및 일부 코드 변경
  • Loading branch information
prgmr99 authored May 6, 2024
2 parents 1923b81 + 1d4bcbe commit b170715
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions src/components/recruit/applicants/toast/Toast.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,10 @@ const ToastContainer = styled.article<ToastProps>`
box-shadow:
0px 4px 20px 0px rgba(0, 0, 0, 0.1),
0px 2px 2px 0px rgba(0, 0, 0, 0.25);
opacity: ${props => (props.isOpen ? '1' : '0')};
visibility: ${props => (props.isOpen ? 'visible' : 'hidden')};
opacity: 1;
visibility: visible;
transition: opacity 0.2s ease-in-out;
.eYFqHE {
position: fixed;
bottom: 1rem;
left: 50%;
display: flex;
align-items: center;
width: 48.184rem;
padding: 2rem;
transform: translateX(-50%);
background-color: rgb(131, 88, 252);
color: rgb(243, 245, 255);
border-radius: 1rem;
gap: 1.2rem;
box-sizing: border-box;
border: 2px solid var(--Purplescale-500, #8358fc);
box-shadow:
rgba(0, 0, 0, 0.1) 0px 4px 20px 0px,
rgba(0, 0, 0, 0.25) 0px 2px 2px 0px;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease-in-out 0s;
}
.body1-medium {
color: #ffffff;
font-size: 1.6rem;
Expand Down

0 comments on commit b170715

Please # to comment.