replaceing header & footer; this closes #11

This commit is contained in:
viktor 2017-12-18 17:49:56 +03:00
parent 07c147d75b
commit 520a63c06b
14 changed files with 28 additions and 28 deletions

30
package-lock.json generated
View File

@ -4154,6 +4154,13 @@
}
}
},
"string_decoder": {
"version": "1.0.1",
"bundled": true,
"requires": {
"safe-buffer": "5.0.1"
}
},
"string-width": {
"version": "1.0.2",
"bundled": true,
@ -4163,13 +4170,6 @@
"strip-ansi": "3.0.1"
}
},
"string_decoder": {
"version": "1.0.1",
"bundled": true,
"requires": {
"safe-buffer": "5.0.1"
}
},
"stringstream": {
"version": "0.0.5",
"bundled": true,
@ -9527,6 +9527,14 @@
"resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
"integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM="
},
"string_decoder": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
"requires": {
"safe-buffer": "5.1.1"
}
},
"string-length": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz",
@ -9569,14 +9577,6 @@
"function-bind": "1.1.1"
}
},
"string_decoder": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
"requires": {
"safe-buffer": "5.1.1"
}
},
"stringstream": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",

View File

@ -8,7 +8,7 @@
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
.footer-logo, .header-logo {
background-image: url("./images/logos@2x.png");
background-size: 149px 59px; } }
background-size: 182px 59px; } }
.new-form, .settings, .ballots-i {
transition: 0.3s box-shadow;
@ -286,7 +286,7 @@ button {
top: 0; } }
.footer-logo {
left: 0;
width: 101px;
width: 127px;
height: 24px;
background-position: 0 0; }
.footer-rights {
@ -312,7 +312,7 @@ button {
overflow: hidden; }
.header-logo {
float: left;
width: 149px;
width: 182px;
height: 35px;
background-position: 0 -24px; }
.header-settings, .header-new-ballot {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -8,7 +8,7 @@
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
.footer-logo, .header-logo {
background-image: url("./images/logos@2x.png");
background-size: 149px 59px; } }
background-size: 182px 59px; } }
.new-form, .settings, .ballots-i {
transition: 0.3s box-shadow;
@ -286,7 +286,7 @@ button {
top: 0; } }
.footer-logo {
left: 0;
width: 101px;
width: 127px;
height: 24px;
background-position: 0 0; }
.footer-rights {
@ -312,7 +312,7 @@ button {
overflow: hidden; }
.header-logo {
float: left;
width: 149px;
width: 182px;
height: 35px;
background-position: 0 -24px; }
.header-settings, .header-new-ballot {

View File

@ -4,7 +4,7 @@
}
%logos {
@include image-2x('./images/logos@2x.png', 149px, 59px);
@include image-2x('./images/logos@2x.png', 182px, 59px);
display: block;
background-image: url(./images/logos.png);
}

View File

@ -34,7 +34,7 @@
&-logo {
@extend %logos;
left: 0;
width: 101px;
width: 127px;
height: 24px;
background-position: 0 0
}

View File

@ -18,7 +18,7 @@
&-logo {
@extend %logos;
float: left;
width: 149px;
width: 182px;
height: 35px;
background-position: 0 -24px;
}

View File

@ -4,7 +4,7 @@ import { Link } from 'react-router-dom';
export const Footer = () => (
<footer className="footer">
<div className="container">
<p className="footer-rights">2017 Oracles Network. All rights reserved.</p>
<p className="footer-rights">2017 POA Network. All rights reserved.</p>
<Link to="/" className="footer-logo"></Link>
<div className="socials">
<a href="#" className="socials-i socials-i_reddit"></a>

View File

@ -14,7 +14,7 @@ if (window.web3) {
} else {
swal(
'Please use a web3 browser',
"You aren't connected to Oracles Network. Please, switch on Oracles plugin and refresh the page. Check Oracles network <a href='https://github.com/oraclesorg/oracles-wiki' target='blank'>wiki</a> for more info.",
"You aren't connected to POA Network. Please, switch on Oracles plugin and refresh the page. Check Oracles network <a href='https://github.com/oraclesorg/oracles-wiki' target='blank'>wiki</a> for more info.",
'error'
);
}

View File

@ -4,7 +4,7 @@ import { Link } from 'react-router-dom';
export const Footer = () => (
<footer className="footer">
<div className="container">
<p className="footer-rights">2017 Oracles Network. All rights reserved.</p>
<p className="footer-rights">2017 POA Network. All rights reserved.</p>
<Link to="/" className="footer-logo"></Link>
<div className="socials">
<a href="#" className="socials-i socials-i_reddit"></a>

View File

@ -14,7 +14,7 @@ if (window.web3) {
} else {
swal(
'Please use a web3 browser',
"You aren't connected to Oracles Network. Please, switch on Oracles plugin and refresh the page. Check Oracles network <a href='https://github.com/oraclesorg/oracles-wiki' target='blank'>wiki</a> for more info.",
"You aren't connected to POA Network. Please, switch on Oracles plugin and refresh the page. Check Oracles network <a href='https://github.com/oraclesorg/oracles-wiki' target='blank'>wiki</a> for more info.",
'error'
);
}