Skip to content

Commit

Permalink
chore :: code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Apr 16, 2024
1 parent a0d76c1 commit 87e526e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ export const Sidebar = () => {

const Wrapper = styled.div<{ isOpen: boolean }>`
width: ${({ isOpen }) => (isOpen ? '260px' : '80px')};
left: 0;
transition: 0.4s ease-in-out;
height: calc(100vh - 80px);
background-color: white;
border-right: 1px #dddddd solid;
position: absolute;
position: fixed;
z-index: 10;
left: 0;
display: flex;
flex-direction: column;
align-items: center;
Expand Down

0 comments on commit 87e526e

Please sign in to comment.