Skip to content

Commit

Permalink
attempt to fix button not working on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
sam9116 committed Feb 3, 2024
1 parent 2bd5838 commit 2b7bae5
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions src/BaseInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,25 @@ const BaseInput = forwardRef(({ setConcerts, setUserLocation, setMapStyle, start
<div>
<form onSubmit={handleSubmit}>
<TextField
sx= { {
"& input": {
color: "white",
},
"& label": {
color: "white",
},
}}
sx={{
"& input": {
color: "white",
},
"& label": {
color: "white",
},
}}
label="Enter Artist Name:"
value={artistName} onChange={(e) => setArtistName(e.target.value)}
/>
<p/>
<Button type="submit" variant="contained" color="primary">
<p />
<Button
sx={{
cursor: 'pointer',
}}
type="submit"
variant="contained"
color="primary">
Submit
</Button>
</form>
Expand Down

0 comments on commit 2b7bae5

Please sign in to comment.