-
Notifications
You must be signed in to change notification settings - Fork 3
Feature/improvements #101
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
Open
Farid-Karimli
wants to merge
15
commits into
src
Choose a base branch
from
feature/improvements
base: src
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feature/improvements #101
Changes from 2 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
37a2935
Farid's improvements
Farid-Karimli 47b8f1e
Design change
Farid-Karimli d4ddd73
Bump ua-parser-js from 0.7.22 to 0.7.28
dependabot[bot] 6a998fd
Merge pull request #103 from BUUPE/dependabot/npm_and_yarn/ua-parser-…
ROODAY a5f7469
Bump url-parse from 1.4.7 to 1.5.1
dependabot[bot] d64e41a
Merge pull request #104 from BUUPE/dependabot/npm_and_yarn/url-parse-…
ROODAY 0e490c1
Bump hosted-git-info from 2.8.8 to 2.8.9
dependabot[bot] ad87466
Merge pull request #105 from BUUPE/dependabot/npm_and_yarn/hosted-git…
ROODAY b0e4169
Merge branch 'feature/improvements' of https://github.com/BUUPE/BUUPE…
vitorvicente 7da638e
Fixing stuff
vitorvicente 827caaf
Removing stuff
vitorvicente 76ecbc7
Fixing Folder Structure
vitorvicente f417c26
Adding Husky
vitorvicente b3d1c39
test
vitorvicente 8ec41d1
ESLint
vitorvicente File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,48 @@ | ||
| import React from "react"; | ||
|
|
||
| import "bootstrap/dist/css/bootstrap.min.css"; | ||
| import { withStyles } from "@material-ui/styles"; | ||
| import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | ||
| import { faUserCircle } from "@fortawesome/free-solid-svg-icons"; | ||
|
|
||
| import UPEclass from "../../assets/img/UPEclass.jpg" | ||
|
|
||
| const styles = { | ||
| masthead: { | ||
| marginBottom: "50px", | ||
| background: "no-repeat center center", | ||
| backgroundColor: "#868e96", | ||
| backgroundAttachment: "scroll", | ||
| position: "relative", | ||
| backgroundSize: "cover", | ||
| backgroundImage: `url(${UPEclass})`, | ||
|
|
||
| }, | ||
| mastheadSiteHeading: { | ||
| padding: "350px 0 150px", | ||
| color: "#fff", | ||
| "@media only screen and (min-width:768px)": { | ||
| padding: "325px 0!important", | ||
| }, | ||
| }, | ||
| } | ||
|
|
||
|
|
||
vitorvicente marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
|
|
||
| const HeaderPhoto = ({classes}) => ( | ||
| <div className={classes.masthead}> | ||
| <div className="container"> | ||
| <div className="row"> | ||
| <div className="col-lg-8 col-md-10 mx-auto"> | ||
| <div className={classes.mastheadSiteHeading} /> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ) | ||
|
|
||
|
|
||
|
|
||
| export default withStyles(styles)(HeaderPhoto); | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.