Skip to content

Commit

Permalink
Merge branch 'fix-extension-ui' into 'development-rebl'
Browse files Browse the repository at this point in the history
UI updates and fixes

See merge request ibriz-internal/blockstack-notes-sample!13
  • Loading branch information
sagarduwal committed Jan 31, 2020
2 parents 5be9150 + 4661f0a commit 0ab005a
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = '//18.236.91.26/';
var u = '//matomo.vaultilo.com/';
_paq.push(['setTrackerUrl', u + 'matomo.php']);
_paq.push(['setSiteId', '1']);
_paq.push(['setSiteId', '2']);
var d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0];
Expand Down
1 change: 1 addition & 0 deletions src/components/Extension/Extension_files/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
background:#abcdef;
height: 510px;
width: 320px;
display: block;
}
</style>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Extension/List Views/ExtNftShow.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function ExtNftShow(props) {
<i className="fa fa-angle-left"></i>
</span>
</Link>
<div className="title">NFT</div>
<div className="title">Vaultilo</div>
</div>
<div className="ext-content">
<div className="title">NFT</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/Extension/List Views/ExtNoteShow.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ export default function ExNoteShow(props) {
<i className="fa fa-angle-left"></i>
</span>
</Link>
<div className="title">Notes</div>
<div className="title">Vaultilo</div>
</div>
<div className="ext-content">
<div className="title">Notes</div>
<div className="content-list">
{notes.map(item => {
const { id, noteTitle } = item;
Expand Down
3 changes: 2 additions & 1 deletion src/components/Extension/List Views/ExtPwShow.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ export default function ExPwShow(props) {
<i className="fa fa-angle-left"></i>
</span>
</Link>
<div className="title">Passwords</div>
<div className="title">Vaultilo</div>
</div>
<div className="ext-content">
<div className="title">Passwords</div>
<div className="content-list">
{passwords.map(item => {
const { id, domainName, domainAddress } = item;
Expand Down
6 changes: 4 additions & 2 deletions src/components/Extension/extension.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

.ext-header {
padding: 14px;
height: 55px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
}

Expand Down Expand Up @@ -78,7 +79,8 @@
}

.list-header {
padding: 14px;
height: 55px;
padding: 16px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
text-align: center;
}
Expand All @@ -96,7 +98,7 @@
.list-header .nav-back {
position: absolute;
left: 15px;
top: 10px;
top: 12px;
}

.list-header .nav-back i {
Expand Down
2 changes: 1 addition & 1 deletion src/components/MainContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export default function MainContent(props) {
if (type === 'notes') {
return renderNotesItem(notes);
}
return [renderPasswordItem(passwords), renderCryptoItem(credentials), renderNotesItem(notes)];
return [renderCryptoItem(credentials), renderPasswordItem(passwords), renderNotesItem(notes)];
};

return (
Expand Down

0 comments on commit 0ab005a

Please sign in to comment.