We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34febe2 commit f5d0338Copy full SHA for f5d0338
client/modules/Preview/CoordinateTracker.jsx
@@ -5,7 +5,7 @@ import { remSize } from '../../theme';
5
const CoordContainer = styled.div`
6
z-index: 1000;
7
padding: ${remSize(0.1)};
8
- border-bottom: ${remSize(1)} dashed #a6a6a6;
+ // border-bottom: ${remSize(1)} dashed #a6a6a6;
9
margin-bottom: ${remSize(4)};
10
11
p {
@@ -16,6 +16,11 @@ const CoordContainer = styled.div`
16
font-weight: light;
17
color: ${(props) => props.theme.Button.primary.default.foreground};
18
}
19
+
20
+ @media (max-width: 550px) {
21
+ // border-bottom: none;
22
+ margin-top: ${remSize(10)};
23
+ }
24
`;
25
26
const CoordinateTracker = (isPlaying) => {
0 commit comments