File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ export const MiddlePanel = styled.div`
7
7
8
8
${ media . lessThan ( 'medium' ) `
9
9
width: 100%;
10
+ padding: ${ props =>
11
+ `${ props . theme . spacing . sectionVertical } px ${ props . theme . spacing . sectionHorizontal } px` } ;
10
12
` } ;
11
13
` ;
12
14
@@ -17,6 +19,9 @@ export const Section = withProps<{ underlined?: boolean }>(
17
19
) `
18
20
padding: ${ props => props . theme . spacing . sectionVertical } px 0;
19
21
22
+ ${ media . lessThan ( 'medium' ) `
23
+ padding: 0;
24
+ ` }
20
25
${ props =>
21
26
( props . underlined &&
22
27
`
@@ -42,6 +47,8 @@ export const RightPanel = styled.div`
42
47
43
48
${ media . lessThan ( 'medium' ) `
44
49
width: 100%;
50
+ padding: ${ props =>
51
+ `${ props . theme . spacing . sectionVertical } px ${ props . theme . spacing . sectionHorizontal } px` } ;
45
52
` } ;
46
53
` ;
47
54
You can’t perform that action at this time.
0 commit comments