Skip to content

Commit

Permalink
Merge pull request #13 from infoshareacademy/FZ12OK-55
Browse files Browse the repository at this point in the history
Fz12 ok 55
  • Loading branch information
qbazielinski authored Feb 23, 2020
2 parents cb1877e + 53a50a1 commit 3e4e39d
Show file tree
Hide file tree
Showing 24 changed files with 917 additions and 662 deletions.
147 changes: 61 additions & 86 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"firebase": "^7.8.1",
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"firebase": "^7.8.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-minimal-pie-chart": "^6.0.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"semantic-ui-react": "^0.88.1"
"semantic-ui-react": "^0.88.1",
"uid": "0.0.2"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" />
<link rel="apple-touch-icon" href="logo192.png" />
<link rel="apple-touch-icon" href="favicon.png" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css" />
<!--
manifest.json provides metadata used when your web app is installed on a
Expand All @@ -30,7 +30,7 @@
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<title>React App</title>
<title>PackMeApp</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
36 changes: 36 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
body {
background-image: url("./images/background.jpg");
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}

.containerWrapper {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 0.8897934173669468) 0%, rgba(255, 255, 255, 0.7805497198879552) 100%);
padding: 78px 20px 10px;
}

.fileContainer {
overflow: hidden;
position: relative;
}

.fileContainer [type=file] {
cursor: inherit;
display: block;
font-size: 999px;
filter: alpha(opacity=0);
min-height: 100%;
min-width: 100%;
opacity: 0;
position: absolute;
right: 0;
text-align: right;
top: 0;
}

.item-done {
text-decoration: line-through;
}
Loading

0 comments on commit 3e4e39d

Please sign in to comment.