diff options
author | Blaster4385 <[email protected]> | 2022-08-19 22:53:02 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2022-08-19 22:53:02 +0530 |
commit | 6c867e639e565262bbf71342f953456a7d0b7f7a (patch) | |
tree | 4271270112d58bb3cb048dee83c189c68df42b72 /client/src/components/Card | |
parent | f47c3f4349cb68460dadf1fc381e3ceb52fe009a (diff) |
Refine UI
Diffstat (limited to 'client/src/components/Card')
-rw-r--r-- | client/src/components/Card/CardAgreement.jsx | 2 | ||||
-rw-r--r-- | client/src/components/Card/CardAgreement.module.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/components/Card/CardAgreement.jsx b/client/src/components/Card/CardAgreement.jsx index da35c91..77bb1a0 100644 --- a/client/src/components/Card/CardAgreement.jsx +++ b/client/src/components/Card/CardAgreement.jsx @@ -10,7 +10,7 @@ const CardAgreement = ({ title, image }) => { <> <div className={styles.card}> <img className={styles.card__image} src={image} alt="" /> - <Typography> + <Typography align='center'> {t('I_HEREBY_CONFIRM_THE_IDENTITY_AND_ADDRESS')} </Typography> </div> diff --git a/client/src/components/Card/CardAgreement.module.css b/client/src/components/Card/CardAgreement.module.css index c9bdae8..c6b76cb 100644 --- a/client/src/components/Card/CardAgreement.module.css +++ b/client/src/components/Card/CardAgreement.module.css @@ -27,5 +27,5 @@ } .card__image { - padding-bottom: 32px; + height: 80%; } |