Skip to content

Commit

Permalink
style: 일그러진 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eunbeann committed Jan 14, 2024
1 parent fa51fa5 commit 3e6a74a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import styled from '@emotion/styled';
export const LecueNoteListContainerWrapper = styled.div<{
backgroundColor: number;
}>`
padding: 0 1.65rem;
background-color: ${({ theme, backgroundColor }) => {
switch (backgroundColor) {
case 0:
Expand All @@ -11,6 +13,7 @@ export const LecueNoteListContainerWrapper = styled.div<{
return theme.colors.BG;
}
}};
flex: 1;
`;

Expand Down Expand Up @@ -47,14 +50,15 @@ export const ButtonWrapper = styled.div`
position: fixed;
bottom: 2rem;
width: 100%;
padding: 0 2.5rem;
width: 92%;
`;

export const AlertBanner = styled.div`
display: flex;
gap: 0.4rem;
justify-content: center;
width: 90%;
padding: 1.1rem 2.35rem;
margin-bottom: 1rem;
Expand Down

0 comments on commit 3e6a74a

Please sign in to comment.