Explorar el Código

Delete button fixed

bugfix/520
jovan.cirkovic hace 3 años
padre
commit
0c7ab30c92

+ 13
- 1
src/components/Cards/OfferCard/OfferCard.styled.js Ver fichero

@@ -323,6 +323,10 @@ export const EyeIcon = styled(Eye)`
}
`;
export const RemoveIconContainer = styled(MessageIcon)`
display: block;
top: 18px;
right: 18px;

@media screen and (max-width: 600px) {
position: absolute;
display: block;
@@ -333,7 +337,15 @@ export const RemoveIconContainer = styled(MessageIcon)`
export const RemoveIcon = styled(Remove)``;
export const EditIconContainer = styled(MessageIcon)`
display: block;
right: 70px;
top: 18px;
right: 76px;

@media screen and (max-width: 600px) {
position: absolute;
display: block;
right: 20px;
top: 60%;
}
`;
export const EditIcon = styled(Edit)``;
export const StarIconContainer = styled(MessageIcon)`

+ 6
- 4
src/components/ProfileCard/EditProfile/EditProfile.styled.js Ver fichero

@@ -16,11 +16,13 @@ export const EditProfileContainer = styled(Box)`
overflow-y: auto;

@media screen and (max-width: 600px) {
width: 375px;
height: 653px;
height: 100vh;
max-height: 100vh;
min-height: 90vh;
width: 100vw;
top: 0;
left: 0;
padding: 38px 18px;
top: 60px;
left: calc(50% - 187px);
}
`;


Cargando…
Cancelar
Guardar