Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit d513810

Browse files
authored
Solved issue #115 Made changes in Apply.js so that it becomes responsive (#116)
* Made changes in Apply.js so that it becomes responsive * removed unnecessary edits * Restored the line break
1 parent b781678 commit d513810

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/views/pages/common/Apply.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const useStyles = makeStyles(theme => ({
6262

6363
function Apply({ className, ...rest }) {
6464
const classes = useStyles();
65-
65+
6666
return (
6767
<div
6868
className={clsx(classes.root, className)}
@@ -97,7 +97,8 @@ function Apply({ className, ...rest }) {
9797
variant="outlined"
9898
rows={5}
9999
style={{
100-
minWidth: '500px',
100+
maxWidth: '500px',
101+
width: '100%',
101102
background: 'rgba(255, 255, 255, 0.8)',
102103
borderRadius: '5px',
103104
color: 'white'

0 commit comments

Comments
 (0)