Skip to content

Commit

Permalink
Only use the mobile header viewport for really small devices
Browse files Browse the repository at this point in the history
  • Loading branch information
rick-nu committed Mar 22, 2024
1 parent ee60500 commit 11dbb53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/App/Statuses/Status/Status.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const ImageBase = styled.img`
width: 3rem;
height: 3rem;
${fromSize.medium(css`
${fromSize.small(css`
width: 6rem;
height: 6rem;
`)}
Expand All @@ -111,7 +111,7 @@ export const ProjectImage = styled(ImageBase)`
float: left;
margin: 0 0.5rem 0.5rem 0;
${fromSize.medium(css`
${fromSize.small(css`
margin: 0 1rem 0 0;
`)}
`;
Expand All @@ -122,7 +122,7 @@ export const UserImage = styled(ImageBase)`
clear: left;
margin-right: 0.5rem;
${fromSize.medium(css`
${fromSize.small(css`
clear: none;
float: right;
margin: 0 0 0 1rem;
Expand Down

0 comments on commit 11dbb53

Please sign in to comment.