Skip to content

Commit

Permalink
style: 댓글 입력창 크기 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyoeunkh committed May 17, 2024
1 parent fa6200e commit 5d06496
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/pages/BoothDetailPage.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const DetailPageWrapper = styled.div`
`;
export const BottomBox = styled.div`
height: 70px;
width: 90%;
width: min(100%, 700px);
position: fixed;
display: flex;
bottom: 0;
Expand All @@ -23,15 +23,16 @@ export const BottomBox = styled.div`
`;
export const ContentContainer = styled.form`
height: 46px;
width: 100%;
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
border: 1px solid #3f3a6c;
border-radius: 30px;
position: relative;
textarea {
color: #5d5a88;
border: none;
Expand Down Expand Up @@ -69,4 +70,5 @@ export const SubBtn = styled.button`
right: 10px;
`;

export const SendImg = styled.img``;
export const SendImg = styled.img`
`;

0 comments on commit 5d06496

Please sign in to comment.