Skip to content

Commit

Permalink
Merge pull request #142 from 2024WISCOM/feature/footer
Browse files Browse the repository at this point in the history
💄 Footer 줄바꿈 방지
  • Loading branch information
nadomola authored Oct 26, 2024
2 parents 5f1bdc6 + d4c45ef commit df10892
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions src/components/footer/Footer.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,24 @@ export const FooterContainer = styled.footer`
color: #fff;
padding: 1%;
display: flex;
margin:0 auto;
flex-direction: column;
align-items: flex-start;
font-family: 'Noto Sans KR', sans-serif;
width: 100%;
white-space: nowrap;
@media(max-width: 768px) {
font-size: 0.8em;
margin : 0;
width:100%;
font-size: 0.6em;
margin : 0 auto;
}
@media (min-width: 769px) and (max-width: 1114px) {
width:100%;
font-size: 0.7em;
}
`;
Expand All @@ -33,6 +42,11 @@ export const FooterTop = styled.div`
padding:0;
}
@media (min-width: 769px) and (max-width: 1114px) {
margin-top:1%;
}
`;

Expand Down Expand Up @@ -109,6 +123,9 @@ export const FooterLogo = styled.img`
display : none;
}
@media (min-width: 769px) and (max-width: 1114px) {
height:40px;
}
`;
Expand Down

0 comments on commit df10892

Please sign in to comment.