File tree 5 files changed +32
-6
lines changed
5 files changed +32
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,12 @@ const Container = styled.div`
16
16
display : flex;
17
17
flex-direction : column;
18
18
align-items : center;
19
- padding-bottom : ${ responsiveSize ( 70 , 240 ) } ;
19
+
20
+ ${ landscapeStyle (
21
+ ( ) => css `
22
+ padding-bottom : 240px ;
23
+ `
24
+ ) }
20
25
` ;
21
26
22
27
const StyledField = styled ( Field ) `
Original file line number Diff line number Diff line change @@ -16,7 +16,12 @@ const Container = styled.div`
16
16
display : flex;
17
17
flex-direction : column;
18
18
align-items : center;
19
- padding-bottom : ${ responsiveSize ( 70 , 191 ) } ;
19
+
20
+ ${ landscapeStyle (
21
+ ( ) => css `
22
+ padding-bottom : 191px ;
23
+ `
24
+ ) }
20
25
` ;
21
26
22
27
const StyledField = styled ( Field ) `
Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ const Container = styled.div`
19
19
display: flex;
20
20
flex-direction: column;
21
21
align-items: center;
22
- padding-bottom: ${ responsiveSize ( 70 , 115 ) } ;
22
+
23
+ ${ landscapeStyle (
24
+ ( ) => css `
25
+ padding-bottom: 115px;
26
+ `
27
+ ) }
23
28
` ;
24
29
25
30
const StyledDropdownCascader = styled ( DropdownCascader ) `
Original file line number Diff line number Diff line change 1
1
import React , { useEffect } from "react" ;
2
- import styled from "styled-components" ;
2
+ import styled , { css } from "styled-components" ;
3
3
4
4
import { DisplaySmall , Field } from "@kleros/ui-components-library" ;
5
5
@@ -13,6 +13,7 @@ import { isUndefined } from "utils/index";
13
13
import { prepareArbitratorExtradata } from "utils/prepareArbitratorExtradata" ;
14
14
15
15
import { responsiveSize } from "styles/responsiveSize" ;
16
+ import { landscapeStyle } from "styles/landscapeStyle" ;
16
17
17
18
import Header from "pages/Resolver/Header" ;
18
19
@@ -22,7 +23,12 @@ const Container = styled.div`
22
23
display: flex;
23
24
flex-direction: column;
24
25
align-items: center;
25
- padding-bottom: ${ responsiveSize ( 70 , 79 ) } ;
26
+
27
+ ${ landscapeStyle (
28
+ ( ) => css `
29
+ padding-bottom: 79px;
30
+ `
31
+ ) }
26
32
` ;
27
33
28
34
const StyledField = styled ( Field ) `
Original file line number Diff line number Diff line change @@ -20,7 +20,12 @@ const Container = styled.div`
20
20
display : flex;
21
21
flex-direction : column;
22
22
align-items : center;
23
- padding-bottom : ${ responsiveSize ( 70 , 82 ) } ;
23
+
24
+ ${ landscapeStyle (
25
+ ( ) => css `
26
+ padding-bottom : 82px ;
27
+ `
28
+ ) }
24
29
` ;
25
30
26
31
const StyledLabel = styled . label `
You can’t perform that action at this time.
0 commit comments