Skip to content

Commit

Permalink
add media query
Browse files Browse the repository at this point in the history
  • Loading branch information
raclim committed Dec 6, 2024
1 parent 34febe2 commit f5d0338
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/modules/Preview/CoordinateTracker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { remSize } from '../../theme';
const CoordContainer = styled.div`
z-index: 1000;
padding: ${remSize(0.1)};
border-bottom: ${remSize(1)} dashed #a6a6a6;
// border-bottom: ${remSize(1)} dashed #a6a6a6;
margin-bottom: ${remSize(4)};
p {
Expand All @@ -16,6 +16,11 @@ const CoordContainer = styled.div`
font-weight: light;
color: ${(props) => props.theme.Button.primary.default.foreground};
}
@media (max-width: 550px) {
// border-bottom: none;
margin-top: ${remSize(10)};
}
`;

const CoordinateTracker = (isPlaying) => {
Expand Down

0 comments on commit f5d0338

Please sign in to comment.