forked from stacks-archive/blockstack-browser
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
built full mobile scaffolding in mobile view on home screen from 1-10…
… apps
- Loading branch information
1 parent
fb761c8
commit e8fe3b2
Showing
2 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,11 @@ class DashboardPage extends Component { | |
|
||
render() { | ||
return ( | ||
<div className="container-fluid app-center dashboard"> | ||
<div className="dashboard"> | ||
<div className="container-fluid app-center"> | ||
<div className="container app-wrap"> | ||
<div className="col-sm-12 app-container no-padding"> | ||
<div className="app-box-wrap"> | ||
<div className="app-container no-padding"> | ||
<div className="col-sm-3 app-box-wrap"> | ||
<Link to="/profiles" className="app-box-container"> | ||
<div className="app-box"> | ||
<img src="/images/[email protected]" /> | ||
|
@@ -32,7 +33,7 @@ class DashboardPage extends Component { | |
<h3>Profiles</h3> | ||
</div> | ||
</div> | ||
<div className="app-box-wrap"> | ||
<div className="col-sm-3 app-box-wrap"> | ||
<Link to="/wallet/deposit" className="app-box-container"> | ||
<div className="app-box"> | ||
<img src="/images/[email protected]" /> | ||
|
@@ -42,7 +43,7 @@ class DashboardPage extends Component { | |
<h3>Wallet</h3> | ||
</div> | ||
</div> | ||
<div className="app-box-wrap"> | ||
<div className="col-sm-3 app-box-wrap"> | ||
<Link to="/account/settings" className="app-box-container"> | ||
<div className="app-box"> | ||
<img src="/images/app-settings.png" /> | ||
|
@@ -52,7 +53,7 @@ class DashboardPage extends Component { | |
<h3>Account</h3> | ||
</div> | ||
</div> | ||
<div className="app-box-wrap"> | ||
<div className="col-sm-3 app-box-wrap"> | ||
<a href="https://helloblockstack.com" | ||
className="app-box-container"> | ||
<div className="app-box"> | ||
|
@@ -66,6 +67,7 @@ class DashboardPage extends Component { | |
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters