Skip to content

Commit

Permalink
make job container lg (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
januschung authored Jun 22, 2024
1 parent 0997f1d commit b35c80d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/components/JobApplicationList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function JobApplicationList() {
<div>
<main>
<JobApplicationDialog jobApplication={jobApplication} handleClose={handleClose} open={open} setOpen={setOpen}/>
<Container sx={{ py: 8 }} maxWidth="md">
<Container sx={{ py: 8 }} maxWidth="lg">
<Grid container spacing={4}>

{data.allJobApplication.map(jobApplication => {
Expand Down
14 changes: 1 addition & 13 deletions src/components/ProfileDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,11 @@ import DialogActions from '@mui/material/DialogActions';
import DialogContent from '@mui/material/DialogContent';
import DialogTitle from '@mui/material/DialogTitle';
import TextField from '@mui/material/TextField';
import IconButton from '@mui/material/IconButton';
import ContentCopyOutlinedIcon from '@mui/icons-material/ContentCopyOutlined';
import { Typography, Grid } from '@mui/material';
import { UPDATE_PROFILE } from '../graphql/mutation';
import { GET_PROFILE } from '../graphql/query';
import CopyButton from './CopyButton';

const CopyButton = ({ text }) => {
const handleCopy = () => {
navigator.clipboard.writeText(text);
};

return (
<IconButton onClick={handleCopy} size="small" edge="end">
<ContentCopyOutlinedIcon fontSize="small" />
</IconButton>
);
};

export default function ProfileDialog({ profile, handleClose, open, setOpen }) {
const [firstName, setFirstName] = useState('');
Expand Down

0 comments on commit b35c80d

Please sign in to comment.