Skip to content

Commit

Permalink
Style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
alchaplinsky committed May 2, 2020
1 parent 2360827 commit e3cdb7b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ export default ({ name, entry }) => {
return (
<div className="item">
<div className="label">{name}</div>
<div className="value">{formattedValue()}</div>
<div className="value">
<strong className="muted">{formattedValue()}</strong>
</div>
<div className="secondary">{time}</div>
<Copy width="16" height="16" onClick={() => copy(code)} />
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/stylesheets/components/entry-details.sass
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
padding-right: 8px
.secondary
padding: 0 10px
font-size: 12px
line-height: 1.5
color: #777
svg
cursor: pointer
Expand Down
3 changes: 3 additions & 0 deletions src/renderer/stylesheets/typography.sass
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ h2, h3
a
color: #106cc8

.muted
color: #555

.danger
color: #d63031

Expand Down

0 comments on commit e3cdb7b

Please sign in to comment.