diff --git a/ui/dist/index.html b/ui/dist/index.html index 4be7ceb5b..b48a3a0a7 100644 --- a/ui/dist/index.html +++ b/ui/dist/index.html @@ -3,8 +3,7 @@ LBRY - - + diff --git a/ui/js/component/file-selector.js b/ui/js/component/file-selector.js index 910920419..391ce9acf 100644 --- a/ui/js/component/file-selector.js +++ b/ui/js/component/file-selector.js @@ -55,9 +55,13 @@ class FileSelector extends React.PureComponent { className="button-block button-alt file-selector__choose-button" onClick={() => this.handleButtonClick()} > - {this.props.type == "file" - ? __("Choose File") - : __("Choose Directory")} + + + {this.props.type == "file" + ? __("Choose File") + : __("Choose Directory")} + + {" "} diff --git a/ui/scss/_gui.scss b/ui/scss/_gui.scss index 67e6b48db..e758ebe8a 100644 --- a/ui/scss/_gui.scss +++ b/ui/scss/_gui.scss @@ -7,7 +7,7 @@ html body { color: var(--text-color); - font-family: 'Source Sans Pro', sans-serif; + font-family: 'Roboto', sans-serif; line-height: var(--font-line-height); } @@ -25,7 +25,7 @@ body .credit-amount--indicator { - font-weight: bold; + font-weight: 500; color: var(--color-money); } .credit-amount--fee diff --git a/ui/scss/component/_button.scss b/ui/scss/component/_button.scss index ae54dd6b9..7ba181c78 100644 --- a/ui/scss/component/_button.scss +++ b/ui/scss/component/_button.scss @@ -43,6 +43,8 @@ $button-focus-shift: 12%; .button-block { cursor: pointer; + font-weight: 500; + font-size: 14px; transition: background var(--animation-duration) var(--animation-style); } @@ -94,6 +96,5 @@ $button-focus-shift: 12%; .button--submit { font-family: inherit; - font-size: inherit; line-height: 0; } diff --git a/ui/scss/component/_card.scss b/ui/scss/component/_card.scss index 03b515a4b..c278ef5f9 100644 --- a/ui/scss/component/_card.scss +++ b/ui/scss/component/_card.scss @@ -54,6 +54,7 @@ .card__actions--bottom { margin-top: $spacing-vertical * 1/3; margin-bottom: $spacing-vertical * 1/3; + border-top: var(--divider); } .card__actions--form-submit { margin-top: $spacing-vertical; @@ -288,4 +289,4 @@ if we keep doing things like this, we should add a real grid system, but I'm goi > .card:nth-of-type(2n - 1):not(:last-child) { margin-right: $margin-card-grid; } -} \ No newline at end of file +} diff --git a/ui/scss/component/_file-selector.scss b/ui/scss/component/_file-selector.scss index 561af9a91..31dc20d81 100644 --- a/ui/scss/component/_file-selector.scss +++ b/ui/scss/component/_file-selector.scss @@ -4,8 +4,9 @@ .file-selector__choose-button { font-family: inherit; + line-height: 0; + color: inherit; margin-right: 16px; - padding: 0 16px; } .file-selector__path { diff --git a/ui/scss/component/_tabs.scss b/ui/scss/component/_tabs.scss index fb484aabb..3a3dfe92a 100644 --- a/ui/scss/component/_tabs.scss +++ b/ui/scss/component/_tabs.scss @@ -11,7 +11,7 @@ nav.sub-header height: 38px; line-height: 38px; text-align: center; - font-weight: 600; + font-weight: 500; text-transform: uppercase; display: inline-block; vertical-align: baseline;