style fixes
This commit is contained in:
parent
f109ceaf96
commit
d783d2a24f
8 changed files with 22 additions and 15 deletions
|
@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
### Changed
|
||||
|
||||
- Updated lbry-sdk to [0.60.0](https://github.com/lbryio/lbry-sdk/releases/tag/v0.60.0)
|
||||
- Drops support for publishing anonymous comments ([#3705](https://github.com/lbryio/lbry-desktop/pull/3705))
|
||||
- Don't remember past repost bid amount ([bbd263c](https://github.com/lbryio/lbry-desktop/commit/bbd263c4413935ee4fac7b7b79b7f73b42d9c1f6))
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
"@babel/register": "^7.0.0",
|
||||
"@exponent/electron-cookies": "^2.0.0",
|
||||
"@hot-loader/react-dom": "^16.8",
|
||||
"@lbry/components": "^3.0.10",
|
||||
"@lbry/components": "^3.0.11",
|
||||
"@reach/menu-button": "^0.1.18",
|
||||
"@reach/rect": "^0.2.1",
|
||||
"@reach/tabs": "^0.1.5",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// @flow
|
||||
import type { ElementRef } from 'react';
|
||||
import type { ElementRef, Node } from 'react';
|
||||
import React from 'react';
|
||||
import ReactDOMServer from 'react-dom/server';
|
||||
import SimpleMDE from 'react-simplemde-editor';
|
||||
|
@ -10,7 +10,7 @@ import 'easymde/dist/easymde.min.css';
|
|||
|
||||
type Props = {
|
||||
name: string,
|
||||
label?: string,
|
||||
label?: string | Node,
|
||||
render?: () => React$Node,
|
||||
prefix?: string,
|
||||
postfix?: string,
|
||||
|
|
|
@ -51,9 +51,10 @@ function PrivacyAgreement(props: Props) {
|
|||
</h3>
|
||||
</div>
|
||||
<div>
|
||||
<img src={image} />
|
||||
<img src={image} className="privacy-img" />
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
<Form onSubmit={handleSubmit} className="section__body">
|
||||
<p className="section__subtitle">
|
||||
{__('Can this app send information about your usage to inform publishers and improve the software?')}
|
||||
|
@ -64,7 +65,7 @@ function PrivacyAgreement(props: Props) {
|
|||
type="radio"
|
||||
label={
|
||||
<>
|
||||
<span className="emoji">😄</span> {__('Yes, including with third-party analytics platforms')}
|
||||
{__('Yes, including with third-party analytics platforms')} <span>😄</span>
|
||||
</>
|
||||
}
|
||||
helper={__(`Sending information to third parties (e.g. Google Analytics or Mixpanel) allows us to use detailed
|
||||
|
@ -78,7 +79,7 @@ function PrivacyAgreement(props: Props) {
|
|||
checked={share === LIMITED}
|
||||
label={
|
||||
<>
|
||||
<span className="emoji">🙂</span> {__('Yes, but only with LBRY, Inc.')}
|
||||
{__('Yes, but only with LBRY, Inc.')} <span>🙂</span>
|
||||
</>
|
||||
}
|
||||
helper={__(
|
||||
|
@ -93,7 +94,7 @@ function PrivacyAgreement(props: Props) {
|
|||
checked={share === NONE}
|
||||
label={
|
||||
<>
|
||||
<span className="emoji">😢</span> {__('No')}
|
||||
{__('No')} <span>😢</span>
|
||||
</>
|
||||
}
|
||||
helper={__(`No information will be sent directly to LBRY, Inc. or third-parties about your usage. Note that as
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
|
||||
.main--contained {
|
||||
margin: auto;
|
||||
margin-top: 5rem;
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
|
@ -118,7 +118,7 @@
|
|||
width: 40em;
|
||||
max-width: unset;
|
||||
min-width: unset;
|
||||
|
||||
|
||||
@media (max-width: $breakpoint-small) {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -263,3 +263,7 @@ a {
|
|||
padding: var(--spacing-large);
|
||||
background-color: var(--color-primary-alt);
|
||||
}
|
||||
|
||||
.privacy-img {
|
||||
height: 10rem;
|
||||
}
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
--color-input-border: var(--color-border);
|
||||
--color-input-border-active: var(--color-secondary);
|
||||
--color-input-toggle: var(--color-primary);
|
||||
--color-input-toggle-bg: var(--color-input-bg);
|
||||
--color-input-toggle-bg-hover: var(--color-secondary);
|
||||
|
||||
// Menu
|
||||
|
|
12
yarn.lock
12
yarn.lock
|
@ -1033,10 +1033,10 @@
|
|||
prop-types "^15.6.2"
|
||||
scheduler "^0.15.0"
|
||||
|
||||
"@lbry/components@^3.0.10":
|
||||
version "3.0.10"
|
||||
resolved "https://registry.yarnpkg.com/@lbry/components/-/components-3.0.10.tgz#16e03c42f95274743c6ddcec1d541ea73d54e745"
|
||||
integrity sha512-4bfINx7cN03IYRag5NxVkP04SuxsO1cQtey8J+z7ykF+MFbkhEgnZZt4kQmaaL3oK1GuNEpjbXZdntc2Eikyfg==
|
||||
"@lbry/components@^3.0.11":
|
||||
version "3.0.11"
|
||||
resolved "https://registry.yarnpkg.com/@lbry/components/-/components-3.0.11.tgz#e3c1363d26059fa2a5fa47a4e9b1cd4a61e7cf1d"
|
||||
integrity sha512-dGSv5A3uQkHmmMkZfJ3bG6blEARLFn3lBU9dnTiXXABVR2QQXiDn+Wu3rUjraHvC/0JBzoeiCv1mniRFiGBOGw==
|
||||
|
||||
"@mapbox/hast-util-table-cell-style@^0.1.3":
|
||||
version "0.1.3"
|
||||
|
@ -7174,9 +7174,9 @@ lazy-val@^1.0.4:
|
|||
yargs "^13.2.2"
|
||||
zstd-codec "^0.1.1"
|
||||
|
||||
lbry-redux@lbryio/lbry-redux#f22bdbfe2f403d13fa8ce99e8849dca0e3d19bef:
|
||||
lbry-redux@lbryio/lbry-redux#b4fbc212ca6008ec05c31116182bf6dfa7a1cbcb:
|
||||
version "0.0.1"
|
||||
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/f22bdbfe2f403d13fa8ce99e8849dca0e3d19bef"
|
||||
resolved "https://codeload.github.com/lbryio/lbry-redux/tar.gz/b4fbc212ca6008ec05c31116182bf6dfa7a1cbcb"
|
||||
dependencies:
|
||||
proxy-polyfill "0.1.6"
|
||||
reselect "^3.0.0"
|
||||
|
|
Loading…
Add table
Reference in a new issue