Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions frontends/main/src/app-pages/CertificatePage/CertificatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const Title = styled(Typography)(({ theme }) => ({
},
},
[theme.breakpoints.down("md")]: {
textAlign: "left",
margin: "24px 0",
span: {
fontSize: theme.typography.pxToRem(24),
Expand All @@ -68,7 +67,7 @@ const Outer = styled.div(({ theme }) => ({
maxWidth: "1306px",
minWidth: "1200px",
border: `4px solid ${theme.custom.colors.silverGray}`,
padding: "24px 23px",
padding: "24px",
backgroundColor: theme.custom.colors.white,
marginTop: "50px",
margin: "0 auto",
Expand All @@ -79,6 +78,12 @@ const Outer = styled.div(({ theme }) => ({
maxWidth: "unset",
minWidth: "unset",
},
[theme.breakpoints.down("md")]: {
padding: 0,
border: "none",
maxWidth: "460px",
minWidth: "unset",
},
},
"@media print": {
boxSizing: "border-box",
Expand All @@ -89,15 +94,14 @@ const Outer = styled.div(({ theme }) => ({

const Inner = styled.div(({ theme }) => ({
border: `1px solid ${theme.custom.colors.silverGrayLight}`,
padding: "67px",
padding: "64px",
display: "flex",
flexDirection: "column",
gap: "56px",
gap: "64px",
position: "relative",
"@media screen": {
[theme.breakpoints.down("lg")]: {
padding: "40px",
gap: "40px",
},
[theme.breakpoints.down("md")]: {
border: `2px solid ${theme.custom.colors.lightGray2}`,
Expand Down Expand Up @@ -310,7 +314,7 @@ const Spacer = styled.div(({ theme }) => ({
const Signatories = styled.div(({ theme }) => ({
display: "flex",
flexDirection: "row",
gap: "16px",
gap: "40px",
width: "100%",
"@media screen": {
[theme.breakpoints.down("md")]: {
Expand Down
Loading