Skip to content

Commit

Permalink
๐Ÿ› Fix: About ์ด๋ฏธ์ง€ ๋ฐฐํฌํŒ ๋†’์ด ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
techncherry committed Oct 26, 2024
1 parent 0be50bf commit 33307e5
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions src/components/about/About.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ export const Identity = styled.div`
margin-bottom: 80px;
}
@media (max-width: 880px) {
flex-direction: column;
margin-bottom: 50px;
}
@media (max-width: 768px) {
flex-direction: column;
margin-bottom: 50px;
Expand All @@ -186,15 +191,17 @@ export const Identity = styled.div`
`;

export const Poster = styled.object`
width: 25vw;
height: 25vw;
height: 36vw;
flex-shrink: 0;
margin: 0;
display: block;
@media (max-width: 880px) {
height: 80vw;
}
@media (max-width: 768px) {
width: 100%;
height: 100%;
height: 110vw;
}
`;

Expand All @@ -207,9 +214,19 @@ export const Text = styled.div`
font-weight: 400;
line-height: 40px;
@media (max-width: 1280px) {
font-size: 20px;
line-height: 38px;
}
@media (max-width: 1024px) {
font-size: 18px;
line-height: 36px;
line-height: 32px;
}
@media (max-width: 920px) {
font-size: 17px;
line-height: 30px;
}
@media (max-width: 768px) {
Expand Down

0 comments on commit 33307e5

Please sign in to comment.