Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
Fixed additional spacing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
neauoire committed Feb 12, 2018
1 parent d434165 commit 9ac3dc6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion elements/status-bar.js
Expand Up @@ -10,7 +10,7 @@ const style = css`
position: absolute;
bottom: 0;
width: 100%;
padding: .5rem 1rem;
padding: .5rem 1rem .75rem;
background-color: var(--color-neutral-04);
color: var(--color-neutral-60);
}
Expand Down
2 changes: 1 addition & 1 deletion elements/status.js
Expand Up @@ -6,7 +6,7 @@ const progressbar = css`
:host {
--progress-height: .5rem;
--bar-height: var(--progress-height);
--counter-width: 2.5rem;
--counter-width: 3.0rem;
--tile-width: 28px;
--stripe-width: 5px;
min-width: 8rem;
Expand Down
6 changes: 4 additions & 2 deletions elements/table-row.js
Expand Up @@ -95,8 +95,10 @@ var networkStyles = css`
display: inline-block;
color: var(--color-neutral-20);
vertical-align: top;
width: 1.1em;
width: 0.75em;
max-height: 1.6em;
margin-top: -0.05em;
margin-right: 5px;
}
.network-peers-many {
--polygon-1-color: var(--color-green);
Expand Down Expand Up @@ -255,7 +257,7 @@ function DeleteButton () {
var { dat, emit } = this.props
return button.icon('Remove Dat', {
icon: icon('delete'),
class: 'row-action delete',
class: 'row-action delete mr2',
onclick: function (e) {
e.preventDefault()
e.stopPropagation()
Expand Down

0 comments on commit 9ac3dc6

Please sign in to comment.