We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 974bc7d commit f39fc98Copy full SHA for f39fc98
src/common-elements/panels.ts
@@ -7,6 +7,8 @@ export const MiddlePanel = styled.div`
7
8
${media.lessThan('medium')`
9
width: 100%;
10
+ padding: ${props =>
11
+ `${props.theme.spacing.sectionVertical}px ${props.theme.spacing.sectionHorizontal}px`};
12
`};
13
`;
14
@@ -17,6 +19,9 @@ export const Section = withProps<{ underlined?: boolean }>(
17
19
)`
18
20
padding: ${props => props.theme.spacing.sectionVertical}px 0;
21
22
+ ${media.lessThan('medium')`
23
+ padding: 0;
24
+ `}
25
${props =>
26
(props.underlined &&
27
`
@@ -42,6 +47,8 @@ export const RightPanel = styled.div`
42
47
43
48
44
49
50
51
45
52
46
53
54
0 commit comments