Merge 'release' into 'master' (#2195)

* v0.27.0-rc.1

* v0.27.0-rc.2

* v0.27.0-rc.3

* v0.27.0-rc.4

* v0.27.0-rc.5

* chore: bump rc

* v0.27.0-rc.7

* fix: style for large 0 balance

* v0.27.0-rc.8

* v0.27.0

* update changelog
This commit is contained in:
Sean Yesmunt 2019-01-15 15:49:49 -05:00 committed by GitHub
parent 64ece3cbd4
commit a6f8d3af5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 2 deletions

View file

@ -12,6 +12,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
### Fixed
## [0.27.0] - 2018-01-15
### Changed
- App redesign with shared colors component ([#2144](https://github.com/lbryio/lbry-desktop/pull/2144))
- Upgraded [LBRY SDK 0.30.4](https://github.com/lbryio/lbry/releases/tag/v0.30.4) to improve network stability

View file

@ -1,6 +1,6 @@
{
"name": "LBRY",
"version": "0.26.1",
"version": "0.27.0",
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
"keywords": [
"lbry"

View file

@ -16,7 +16,9 @@ const WalletBalance = (props: Props) => {
</header>
<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>
</section>
);

View file

@ -38,6 +38,7 @@
}
.badge--large {
font-weight: 600;
font-size: 3.5rem;
line-height: 1;
}