Skip to content

Commit

Permalink
Hotfix: 판매정보 작성 페이지에서 헤더를 고정시키고 스크롤 컨테이너 영역 지정 #224
Browse files Browse the repository at this point in the history
  • Loading branch information
rmdnps10 committed Apr 26, 2024
1 parent a968a5b commit c6e36ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Common/TabB2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import styled from 'styled-components';
// 왼쪽 아이콘 Import 후 <div className="left-icon"> <아이콘/></div>
// 오른쪾 아이코 Import 후 <div className="right-icon"><아이콘/></div>

export const TabB2 = styled.div`
export const TabB2 = styled.header`
display: flex;
align-items: center;
background-color: ${White};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,8 @@ const ModifyProfileMainSectionWrapper = styled.section`
margin-top: 0.2rem;
flex-direction: column;
gap: 1.1rem;
height: calc(100vh - 5.3rem);
overflow:scroll;
`;

const ModifyProfileBox = styled.div`
Expand Down Expand Up @@ -581,5 +583,4 @@ const ExperienceTextArea = styled.textarea`
}
`;


export default React.memo(ModifyProfileMainSection);

0 comments on commit c6e36ab

Please sign in to comment.