Skip to content

Commit

Permalink
design :: 반응형
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Apr 16, 2024
1 parent 5703497 commit a0d76c1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/pages/Team/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,23 @@ export const Team = () => {

const Wrapper = styled.div`
margin-top: 80px;
margin-left: 80px;
width: 100%;
display: flex;
`;

const Container = styled.div`
width: 100%;
height: calc(100vh - 80px);
padding-left: 100px;
padding-right: 20px;
display: flex;
flex-direction: column;
align-items: center;
`;

const TitleContainer = styled.div`
width: 1120px;
width: 100%;
max-width: 1120px;
margin-top: 80px;
`;

Expand All @@ -115,12 +117,13 @@ const Describtion = styled.div`
`;

const UtilContainer = styled.div`
width: 1120px;
width: 100%;
max-width: 1120px;
height: 50px;
margin: 30px 0 30px 0;
display: flex;
justify-content: space-between;
& > div:nth-child(1) {
& > div:nth-of-type(1) {
& > svg {
position: relative;
right: 24px;
Expand All @@ -141,7 +144,8 @@ const SearchBar = styled.input`
`;

const TipBox = styled.div`
width: 1120px;
width: 100%;
max-width: 1120px;
height: 120px;
color: ${theme.color.gray5};
border: 1px ${theme.color.gray5} solid;
Expand Down

0 comments on commit a0d76c1

Please sign in to comment.