patch responsive for mobile devices

This commit is contained in:
Dewansh Nehra 2024-01-25 14:28:30 +05:30 committed by Jyotirmoy Bandyopadhayaya
parent 3a9db03c18
commit 4ebaffc0e6
1 changed files with 21 additions and 0 deletions

View File

@ -98,4 +98,25 @@ export const ExpStyle = styled.div`
flex-direction: column;
gap: 3rem;
}
@media screen and (max-width: 1024px){
.company{
flex-direction: column;
}
.company-left{
width: 100%;
}
.company-right{
width: 100%;
}
.company-right .company-exp-short{
flex-wrap: wrap;
}
.tech-list{
flex-wrap: wrap;
}
}
`;