Skip to content

Commit f5d0338

Browse files
committed
add media query
1 parent 34febe2 commit f5d0338

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

client/modules/Preview/CoordinateTracker.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { remSize } from '../../theme';
55
const CoordContainer = styled.div`
66
z-index: 1000;
77
padding: ${remSize(0.1)};
8-
border-bottom: ${remSize(1)} dashed #a6a6a6;
8+
// border-bottom: ${remSize(1)} dashed #a6a6a6;
99
margin-bottom: ${remSize(4)};
1010
1111
p {
@@ -16,6 +16,11 @@ const CoordContainer = styled.div`
1616
font-weight: light;
1717
color: ${(props) => props.theme.Button.primary.default.foreground};
1818
}
19+
20+
@media (max-width: 550px) {
21+
// border-bottom: none;
22+
margin-top: ${remSize(10)};
23+
}
1924
`;
2025

2126
const CoordinateTracker = (isPlaying) => {

0 commit comments

Comments
 (0)