Skip to content

Commit

Permalink
fix: Empty 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
alstn2468 committed Nov 29, 2024
1 parent 751cd97 commit 7c3cc4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ const Item = styled.td`
`;

const Empty = styled.div`
position: absolute;
top: 50%;
left: 50%;
display: flex;
transform: translateX(-50%);
flex-direction: column;
flex: 1;
justify-content: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ const DisabledText = styled.span`
`;

const Empty = styled.div`
position: absolute;
top: 50%;
left: 50%;
display: flex;
transform: translateX(-50%);
flex-direction: column;
flex: 1;
justify-content: center;
Expand Down

0 comments on commit 7c3cc4b

Please sign in to comment.