Merge 'release' into 'master' #2195
4 changed files with 11 additions and 2 deletions
|
@ -10,6 +10,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
## [0.27.0] - 2018-01-15
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
- App redesign with shared colors component ([#2144](https://github.com/lbryio/lbry-desktop/pull/2144))
|
- App redesign with shared colors component ([#2144](https://github.com/lbryio/lbry-desktop/pull/2144))
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "LBRY",
|
"name": "LBRY",
|
||||||
"version": "0.26.1",
|
"version": "0.27.0",
|
||||||
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
|
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"lbry"
|
"lbry"
|
||||||
|
|
|
@ -16,7 +16,9 @@ const WalletBalance = (props: Props) => {
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div className="card__content">
|
<div className="card__content">
|
||||||
{(balance || balance === 0) && <CreditAmount large amount={balance} precision={8} />}
|
{(balance || balance === 0) && (
|
||||||
|
<CreditAmount badge={false} large amount={balance} precision={8} />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge--large {
|
.badge--large {
|
||||||
|
font-weight: 600;
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue