Skip to content

Commit

Permalink
Merge pull request #180 from Team-Lecue/feature/Home
Browse files Browse the repository at this point in the history
[ Home ] dev 머지
  • Loading branch information
doyn511 authored Jan 18, 2024
2 parents ce3829e + ea8324e commit c1611ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Home/components/LecueBookList/LecueBookList.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const LecueBookListWrapper = styled.div`
flex-direction: column;
width: 100%;
height: 100dvh;
background-color: ${({ theme }) => theme.colors.key};
`;

export const Title = styled.header`
Expand All @@ -17,6 +19,7 @@ export const Title = styled.header`
color: ${({ theme }) => theme.colors.BG};
${({ theme }) => theme.fonts.Title1_SB_16};
background-color: ${({ theme }) => theme.colors.white};
text-align: center;
`;

Expand All @@ -26,18 +29,18 @@ export const LecueBookList = styled.section`
grid-template-columns: repeat(3, 1fr);
width: 100%;
padding: 3rem 1.6rem 2.2rem;
background-color: ${({ theme }) => theme.colors.key};
padding: 3rem 1.6rem 2.2rem;
`;

export const LecueBook = styled.li`
display: flex;
gap: 1rem;
align-items: center;
justify-content: center;
flex-direction: column;
width: 10rem;
width: 100%;
height: 14rem;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const IconWrapper = styled.section`
display: flex;
gap: 15.7rem;
align-items: baseline;
justify-content: space-between;
width: 100%;
padding: 6rem 1.6rem 5rem;
Expand Down

0 comments on commit c1611ae

Please sign in to comment.