Browse Source

remove overflow color on button

master
azri 1 month ago
parent
commit
689f667b15
2 changed files with 7 additions and 2 deletions
  1. 6
    1
      src/components/Footer/Footer.jsx
  2. 1
    1
      src/components/NewsLetter/NewsLetter.jsx

+ 6
- 1
src/components/Footer/Footer.jsx View File

105
               value={email}
105
               value={email}
106
               type='email'
106
               type='email'
107
               onChange={(e) => { setEmail(e.target.value) }}
107
               onChange={(e) => { setEmail(e.target.value) }}
108
-              sx={{ p: 0, mb: 2 }}
108
+              sx={{ 
109
+                p: 0, 
110
+                mb: 2,
111
+                overflow:"hidden",
112
+                borderRadius:"4px",
113
+              }}
109
               InputProps={{
114
               InputProps={{
110
                 startAdornment: (
115
                 startAdornment: (
111
                   <InputAdornment position="end">
116
                   <InputAdornment position="end">

+ 1
- 1
src/components/NewsLetter/NewsLetter.jsx View File

46
           color: "black"
46
           color: "black"
47
         }}>
47
         }}>
48
 
48
 
49
-          <Typography variant='h4' sx={{fontWeight:"500", fontSize:"1.8rem !important", pb:2}}>
49
+          <Typography variant='h5' sx={{fontWeight:"500", fontSize:"1.8rem !important", pb:2}}>
50
             Let's stay in touch
50
             Let's stay in touch
51
           </Typography>
51
           </Typography>
52
           <Typography variant='body1' sx={{fontSize:{xs:"0.875rem", sm:"0.875rem", md:"1rem" }}}>
52
           <Typography variant='body1' sx={{fontSize:{xs:"0.875rem", sm:"0.875rem", md:"1rem" }}}>

Loading…
Cancel
Save