File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
frontends/main/src/app-pages/CertificatePage Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ const Title = styled(Typography)(({ theme }) => ({
49
49
} ,
50
50
} ,
51
51
[ theme . breakpoints . down ( "md" ) ] : {
52
- textAlign : "left" ,
53
52
margin : "24px 0" ,
54
53
span : {
55
54
fontSize : theme . typography . pxToRem ( 24 ) ,
@@ -73,7 +72,7 @@ const Outer = styled.div(({ theme }) => ({
73
72
maxWidth : "1306px" ,
74
73
minWidth : "1200px" ,
75
74
border : `4px solid ${ theme . custom . colors . silverGray } ` ,
76
- padding : "24px 23px " ,
75
+ padding : "24px" ,
77
76
backgroundColor : theme . custom . colors . white ,
78
77
marginTop : "50px" ,
79
78
margin : "0 auto" ,
@@ -84,6 +83,12 @@ const Outer = styled.div(({ theme }) => ({
84
83
maxWidth : "unset" ,
85
84
minWidth : "unset" ,
86
85
} ,
86
+ [ theme . breakpoints . down ( "md" ) ] : {
87
+ padding : 0 ,
88
+ border : "none" ,
89
+ maxWidth : "460px" ,
90
+ minWidth : "unset" ,
91
+ } ,
87
92
} ,
88
93
"@media print" : {
89
94
boxSizing : "border-box" ,
@@ -94,15 +99,14 @@ const Outer = styled.div(({ theme }) => ({
94
99
95
100
const Inner = styled . div ( ( { theme } ) => ( {
96
101
border : `1px solid ${ theme . custom . colors . silverGrayLight } ` ,
97
- padding : "67px " ,
102
+ padding : "64px " ,
98
103
display : "flex" ,
99
104
flexDirection : "column" ,
100
- gap : "56px " ,
105
+ gap : "64px " ,
101
106
position : "relative" ,
102
107
"@media screen" : {
103
108
[ theme . breakpoints . down ( "lg" ) ] : {
104
109
padding : "40px" ,
105
- gap : "40px" ,
106
110
} ,
107
111
[ theme . breakpoints . down ( "md" ) ] : {
108
112
border : `2px solid ${ theme . custom . colors . lightGray2 } ` ,
@@ -315,7 +319,7 @@ const Spacer = styled.div(({ theme }) => ({
315
319
const Signatories = styled . div ( ( { theme } ) => ( {
316
320
display : "flex" ,
317
321
flexDirection : "row" ,
318
- gap : "16px " ,
322
+ gap : "40px " ,
319
323
width : "100%" ,
320
324
"@media screen" : {
321
325
[ theme . breakpoints . down ( "md" ) ] : {
You can’t perform that action at this time.
0 commit comments