-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grants/profile : add txn history template (#2465)
* grants/profile: base setup for my grants - set up route + view + empty template - css clean up + indent fix - renamed grants/grant_card -> grants/card - split up card css to it's own file * grants : redesign card * grants/profile: added tabs * grants/profile: added txn history section - UI template with be hardcoded - minimal refactoring * stickler fixes
- Loading branch information
1 parent
0ee3802
commit d6c3020
Showing
5 changed files
with
107 additions
and
12 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 |
---|---|---|
@@ -1,4 +1,28 @@ | ||
.header-line { | ||
color: #fff; | ||
font-style: normal; | ||
} | ||
|
||
h2.title { | ||
border-bottom: 1px solid #D0D0D0; | ||
} | ||
|
||
.avatar { | ||
max-width: 3.125rem; | ||
max-height: 3.125rem; | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
|
||
.transaction-history:hover { | ||
background-color: #F9F9F9; | ||
} | ||
|
||
.grants-container .info { | ||
color: #9B9B9B; | ||
} | ||
|
||
.grants-container .txn-link a { | ||
color: #7F8FA4; | ||
text-decoration: none; | ||
} |
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 |
---|---|---|
|
@@ -9,6 +9,10 @@ | |
cursor: pointer; | ||
} | ||
|
||
.tag-lg { | ||
padding: 6px 16px; | ||
} | ||
|
||
.tag p { | ||
margin-bottom: 1px; | ||
} | ||
|
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
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
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