summaryrefslogtreecommitdiff
path: root/client/src/pages/Update/Address
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2022-08-25 22:57:19 +0530
committerBlaster4385 <[email protected]>2022-08-25 22:57:19 +0530
commitce40b4240d7d23d4a6817dea1a6bc45546419718 (patch)
tree8be0883ea33c1cf38ad1283e6dda6a27404687ae /client/src/pages/Update/Address
parent8bb08d2b60b54da1b4a63195f20a8f11425304f6 (diff)
Kaand number 2
Diffstat (limited to 'client/src/pages/Update/Address')
-rw-r--r--client/src/pages/Update/Address/Address.jsx11
-rw-r--r--client/src/pages/Update/Address/Address.module.css4
2 files changed, 10 insertions, 5 deletions
diff --git a/client/src/pages/Update/Address/Address.jsx b/client/src/pages/Update/Address/Address.jsx
index 39d3f13..ad0c023 100644
--- a/client/src/pages/Update/Address/Address.jsx
+++ b/client/src/pages/Update/Address/Address.jsx
@@ -29,11 +29,12 @@ const Address = () => {
const customStyles = {
control: (base) => ({
...base,
- width: '330px',
- height: '60px',
+ width: '500px',
+ height: '80px',
margin: '10px 0px',
border: '3px solid',
- borderRadius: '10px !important'
+ borderRadius: '10px !important',
+ fontSize: '1.5rem'
}),
input: (base) => ({
...base,
@@ -106,7 +107,7 @@ const Address = () => {
placeholder={t('ENTER_YOUR_VILLAGE_TOWN')}
/>
<div className={styles.input__container}>
- <label htmlFor="state">{t('STATE')}</label>
+ <label className={styles.label} htmlFor="state">{t('STATE')}</label>
<div className={styles.input__edit}>
<Select
id="state"
@@ -167,7 +168,7 @@ const Address = () => {
placeholder={t('ENTER_YOUR_AREA_POST_OFFICE')}
/>
<div className={styles.input__container}>
- <label htmlFor="city">{t('DISTRICT')}</label>
+ <label className={styles.label} htmlFor="city">{t('DISTRICT')}</label>
<div className={styles.input__edit}>
<Select
id="city"
diff --git a/client/src/pages/Update/Address/Address.module.css b/client/src/pages/Update/Address/Address.module.css
index ccaca08..0a5198f 100644
--- a/client/src/pages/Update/Address/Address.module.css
+++ b/client/src/pages/Update/Address/Address.module.css
@@ -20,3 +20,7 @@
display: flex;
flex-direction: row;
}
+
+.label {
+ font-size: 1.75rem;
+} \ No newline at end of file