Skip to content

Commit

Permalink
style: LineWrapper 그림자
Browse files Browse the repository at this point in the history
  • Loading branch information
YIMSEBIN committed Nov 11, 2024
1 parent f0c17aa commit 91517b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/pages/contract/EmployeeContract/EmployeeContract.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,11 @@ export default function EmployeeContract() {
const LineWrapper = styled.div`
border: 1px solid #e9e9e9;
border-radius: 3px;
padding: 100px 200px;
padding: 100px 100px;
margin: 52px 0;
box-shadow:
rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
`;

const InputWrapper = styled.div`
Expand Down
5 changes: 4 additions & 1 deletion src/pages/contract/EmployerContract/EmployerContract.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,11 @@ export default function EmployerContract() {
const LineWrapper = styled.div`
border: 1px solid #e9e9e9;
border-radius: 3px;
padding: 100px 200px;
padding: 100px 100px;
margin: 52px 0;
box-shadow:
rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
`;

const InputWrapper = styled.div`
Expand Down

0 comments on commit 91517b3

Please sign in to comment.