-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed improvements related to code formatting
- Loading branch information
1 parent
ba78474
commit f1e4575
Showing
8 changed files
with
315 additions
and
14,043 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
client/src/Components/Organization/OrganizationDetail/ProjectDetails/LeftPane.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import React from "react"; | ||
import CardContent from "@material-ui/core/CardContent"; | ||
import Typography from "@material-ui/core/Typography"; | ||
import Box from "@material-ui/core/Box"; | ||
import { Link } from "@material-ui/core"; | ||
import Button from "@material-ui/core/Button"; | ||
import useStyles from "./ProjectDescStyling"; | ||
|
||
const LeftPane = () => { | ||
const classes = useStyles(); | ||
return ( | ||
<div> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.projectname}>Donut</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.orgname}> | ||
<Box fontWeight="fontWeightBold" m={1}> | ||
Codeuino | ||
</Box> | ||
</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.orglink}> | ||
<Link href="#">www.codeuino.org/donut</Link> | ||
</Typography> | ||
</CardContent> | ||
<CardContent className={classes.LeftCardContent}> | ||
<Typography className={classes.tt}> | ||
<Typography variant="h5" align="left" className={classes.tt}> | ||
Topics: | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
UI/UX | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Graphic Design | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Web Design | ||
</Button> | ||
</Typography> | ||
</Typography> | ||
<Typography className={classes.tt}> | ||
<Typography variant="h5" align="left" className={classes.tt}> | ||
Technology required: | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Adobe Illustrator | ||
</Button> | ||
<Button | ||
variant="contained" | ||
color="primary" | ||
size="small" | ||
className={classes.cap} | ||
> | ||
Figma | ||
</Button> | ||
</Typography> | ||
</Typography> | ||
</CardContent> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LeftPane; |
51 changes: 51 additions & 0 deletions
51
client/src/Components/Organization/OrganizationDetail/ProjectDetails/ProjectDescStyling.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { makeStyles } from "@material-ui/core/styles"; | ||
|
||
const useStyles = makeStyles((theme) => ({ | ||
root: { | ||
flexGrow: 1, | ||
}, | ||
LeftCardContent: { | ||
textAlign: "left", | ||
marginLeft: 70, | ||
}, | ||
RightCardContent: { | ||
marginRight: 70, | ||
textAlign: "Right", | ||
}, | ||
projectname: { | ||
marginTop: 30, | ||
fontSize: 48, | ||
}, | ||
submit: { | ||
marginTop: 30, | ||
fontSize: 18, | ||
}, | ||
orgname: { | ||
fontSize: 20, | ||
marginLeft: -7, | ||
marginTop: -35, | ||
}, | ||
orglink: { | ||
fontSize: 15, | ||
marginTop: -30, | ||
}, | ||
cap: { | ||
borderRadius: "30px", | ||
marginLeft: 10, | ||
fontSize: 13, | ||
textTransform: "none", | ||
}, | ||
tt: { | ||
fontSize: 18, | ||
marginTop: 15, | ||
}, | ||
mentors: { | ||
fontSize: 18, | ||
}, | ||
contact: { | ||
fontSize: 13, | ||
marginLeft: 10, | ||
}, | ||
})); | ||
|
||
export default useStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 14 additions & 17 deletions
31
...src/Components/Organization/OrganizationDetail/ProjectDetails/ProjectDetailsContainer.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
import React, {Component} from "react"; | ||
import ProjectDetailsHeader from "./ProjectDetailsHeader" | ||
import ProjectDescription from "./ProjectDescription" | ||
|
||
|
||
|
||
export class ProjectDetailsContainer extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
<ProjectDetailsHeader/> | ||
<ProjectDescription/> | ||
</div> | ||
) | ||
} | ||
import React from "react"; | ||
import ProjectDetailsHeader from "./ProjectDetailsHeader"; | ||
import ProjectDescription from "./ProjectDescription"; | ||
|
||
const ProjectDetailsContainer = () => { | ||
return ( | ||
<div> | ||
<div> | ||
<ProjectDetailsHeader /> | ||
<ProjectDescription /> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default ProjectDetailsContainer | ||
export default ProjectDetailsContainer; |
Oops, something went wrong.