Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT]:adding cursor to buttom #310

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion client/src/components/About/Home/SectionFirst.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const SectionFirst = () => {
<TextField
variant="outlined"
placeholder="Search job title"
sx={{ flex: 1, marginRight: 2, '& .MuiOutlinedInput-root': { borderRadius: '20px', background: 'white', color: 'black' } }}
sx={{ flex: 1, marginRight: 2, cursor:'pointer', '& .MuiOutlinedInput-root': { borderRadius: '20px', background: 'white', color: 'black'} }}
/>
<TextField
variant="outlined"
Expand Down
67 changes: 47 additions & 20 deletions client/src/components/Home/SectionFirst.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,54 @@ const SectionFirst = () => {
<Typography variant="h6" sx={{ color: 'gray', marginTop: 2 }}>
Search your career opportunity through 12,000 yours
</Typography>

<Box sx={{ display: 'flex', alignItems: 'center', marginTop: 4 }}>
<TextField
variant="outlined"
placeholder="Search job title"
sx={{ flex: 1, marginRight: 2, '& .MuiOutlinedInput-root': { borderRadius: '20px', background: 'white', color: 'black' } }}
/>
<TextField
variant="outlined"
placeholder="Location"
sx={{ flex: 1, '& .MuiOutlinedInput-root': { borderRadius: '20px', background: 'white', color: 'black' }}}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton sx={{ bgcolor: 'orange', borderRadius: '20px', color: 'white' }}>
<SearchIcon />
</IconButton>
</InputAdornment>
),
}}
/>
</Box>
<TextField
variant="outlined"
placeholder="Search job title"
sx={{
flex: 1,
marginRight: 2,
'& .MuiOutlinedInput-root': {
borderRadius: '20px',
background: 'white',
color: 'black',
cursor: 'pointer'
},
'& .MuiInputBase-input': {
cursor: 'pointer'
}
}}
/>
<TextField
variant="outlined"
placeholder="Location"
sx={{
flex: 1,
'& .MuiOutlinedInput-root': {
borderRadius: '20px',
background: 'white',
color: 'black',
cursor: 'pointer'
},
'& .MuiInputBase-input': {
cursor: 'pointer'
}
}}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton sx={{ bgcolor: 'orange', borderRadius: '20px', color: 'white', cursor: 'pointer' }}>
<SearchIcon />
</IconButton>
</InputAdornment>
),
}}
/>
</Box>



<List sx={{ marginTop: 4 }}>
<ListItem>
<ListItemIcon>
Expand Down
52 changes: 12 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.