Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 60 additions & 22 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
"test": "react-scripts test",
"build": "react-scripts build",
"lint": "npm-run-all lint:*",
"lint:js": "eslint '**/*.{js,jsx}'",
"lint:css": "stylelint '**/*.css'",
"lint:js": "eslint \"**/*.{js,jsx}\"",
"lint:css": "stylelint \"**/*.css\"",
"lint-fix": "npm-run-all lint-fix:*",
"lint-fix:js": "eslint --fix '**/*.{js,jsx}'",
"lint-fix:css": "stylelint --fix '**/*.css'",
"format": "prettier --write '**/*.{js,jsx,css,json,md}'",
"lint-fix:js": "eslint --fix \"**/*.{js,jsx}\"",
"lint-fix:css": "stylelint --fix \"**/*.css\"",
"format": "prettier --write \"**/*.{js,jsx,css,json,md}\"",
"now-build": "npm run build"
},
"browserslist": [
Expand Down
Binary file added public/fonts/HelveticaNeue.ttf
Binary file not shown.
Binary file added public/fonts/Yandex Sans Display-Regular.ttf
Binary file not shown.
Binary file added public/images/cat-face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/owl-face.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/sova.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/spam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<title>React App</title>
<title>Почта</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
34 changes: 14 additions & 20 deletions src/app/app.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
.app {
text-align: center;
@font-face {
font-family: Yandex Sans;
src: url('/fonts/Yandex Sans Display-Regular.ttf');
}

.app-header {
display: flex;
min-height: 100vh;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #282c34;
color: #fff;
font-size: calc(10px + 2vmin);
@font-face {
font-family: Helvetica Neue;
src: url('/fonts/HelveticaNeue.ttf');
}

.app-link {
color: #61dafb;
html {
height: 100%;
}

@keyframes app-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
body {
min-width: 800px;
height: 100%;
min-height: 500px;
margin: 0;
background-color: #e5eaf0;
}
Loading