mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
Add small LBRY logo to top of sub-pages
This commit is contained in:
parent
926fce72af
commit
cce187ad62
7 changed files with 17 additions and 1 deletions
|
@ -50,3 +50,14 @@ var CreditAmount = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var subPageLogoStyle = {
|
||||||
|
maxWidth: '150px',
|
||||||
|
display: 'block',
|
||||||
|
marginTop: '36px',
|
||||||
|
};
|
||||||
|
var SubPageLogo = React.createClass({
|
||||||
|
render: function() {
|
||||||
|
return <img src="img/lbry-dark-1600x528.png" style={subPageLogoStyle} />;
|
||||||
|
}
|
||||||
|
});
|
|
@ -4,6 +4,7 @@ var HelpPage = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<main className="page">
|
<main className="page">
|
||||||
|
<SubPageLogo />
|
||||||
<h1>Troubleshooting</h1>
|
<h1>Troubleshooting</h1>
|
||||||
<p>Here are the most commonly encountered problems and what to try doing about them</p>
|
<p>Here are the most commonly encountered problems and what to try doing about them</p>
|
||||||
|
|
||||||
|
|
|
@ -126,6 +126,7 @@ var MyFilesPage = React.createClass({
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<main className="page">
|
<main className="page">
|
||||||
|
<SubPageLogo />
|
||||||
<h1>My files</h1>
|
<h1>My files</h1>
|
||||||
{content}
|
{content}
|
||||||
<section>
|
<section>
|
||||||
|
|
|
@ -21,6 +21,7 @@ var ReportPage = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<main className="page">
|
<main className="page">
|
||||||
|
<SubPageLogo />
|
||||||
<h1>Report a bug</h1>
|
<h1>Report a bug</h1>
|
||||||
<section>
|
<section>
|
||||||
<p>Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!</p>
|
<p>Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!</p>
|
||||||
|
|
|
@ -74,6 +74,7 @@ var SettingsPage = React.createClass({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className="page">
|
<main className="page">
|
||||||
|
<SubPageLogo />
|
||||||
<h1>Settings</h1>
|
<h1>Settings</h1>
|
||||||
<section>
|
<section>
|
||||||
<h4>Run on startup</h4>
|
<h4>Run on startup</h4>
|
||||||
|
|
|
@ -5,6 +5,7 @@ var StartPage = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<main className="page">
|
<main className="page">
|
||||||
|
<SubPageLogo />
|
||||||
<h1>LBRY has closed</h1>
|
<h1>LBRY has closed</h1>
|
||||||
<Link href="lbry://lbry" label="Click here to start LBRY" />
|
<Link href="lbry://lbry" label="Click here to start LBRY" />
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -32,7 +32,7 @@ section
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 { font-size: 2.0em; margin-bottom: $spacing-vertical / 2; margin-top: $spacing-vertical * 1.5; }
|
h1 { font-size: 2.0em; margin-bottom: $spacing-vertical / 2; margin-top: $spacing-vertical; }
|
||||||
h2 { font-size: 1.75em; }
|
h2 { font-size: 1.75em; }
|
||||||
h3 { font-size: 1.4em; }
|
h3 { font-size: 1.4em; }
|
||||||
h4 { font-size: 1.2em; }
|
h4 { font-size: 1.2em; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue