|
|
|
@@ -18,7 +18,7 @@ export const ModalCreateOfferContainer = styled(Box)` |
|
|
|
padding: ${(props) => (props.currentstep !== 3 ? "0 120px" : "0 36px")}; |
|
|
|
overflow-y: auto; |
|
|
|
overflow-x: hidden; |
|
|
|
${(props) => props.currentstep === 3 && `height: 712px;`} |
|
|
|
/* ${(props) => props.currentstep === 3 && `height: 712px;`} */ |
|
|
|
&::-webkit-scrollbar { |
|
|
|
width: 5px; |
|
|
|
} |
|
|
|
@@ -52,7 +52,7 @@ export const ModalCreateOfferContainer = styled(Box)` |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
padding: 0 30px; |
|
|
|
${props => props.currentstep === 3 && `padding: 0;`} |
|
|
|
${(props) => props.currentstep === 3 && `padding: 0;`} |
|
|
|
} |
|
|
|
`; |
|
|
|
|
|
|
|
@@ -98,7 +98,6 @@ export const CreateOfferContainer = styled(Container)` |
|
|
|
align-items: center; |
|
|
|
${(props) => props.currentstep === 3 && `padding-bottom: 20px;`} |
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 810px) { |
|
|
|
${(props) => |
|
|
|
props.currentstep === 3 && |
|
|
|
@@ -109,8 +108,10 @@ export const CreateOfferContainer = styled(Container)` |
|
|
|
} |
|
|
|
|
|
|
|
@media screen and (max-width: 600px) { |
|
|
|
width: 95%; |
|
|
|
${props => props.currentstep === 3 && `padding: 0 8px;`} |
|
|
|
width: 100%; |
|
|
|
padding-right: 0; |
|
|
|
padding-left: 0; |
|
|
|
${(props) => props.currentstep === 3 && `padding: 0 15px;`} |
|
|
|
} |
|
|
|
`; |
|
|
|
export const CreateOfferTitle = styled(Typography)` |
|
|
|
@@ -230,8 +231,8 @@ export const NextButtonContainer = styled(PrimaryButton)` |
|
|
|
position: absolute; |
|
|
|
bottom: 18px; |
|
|
|
height: 44px; |
|
|
|
width: calc(100% - 18px); |
|
|
|
left: 9px; |
|
|
|
width: 339px; |
|
|
|
/* left: 9px; */ |
|
|
|
& button { |
|
|
|
height: 44px; |
|
|
|
} |