diff --git a/app/src/app/app.scss b/app/src/app/app.scss
index e254df4..525e8c5 100644
--- a/app/src/app/app.scss
+++ b/app/src/app/app.scss
@@ -29,6 +29,28 @@ body {
user-select: text;
}
+.grid--table {
+ margin: 10px 0 20px;
+
+ .grid--table__row {
+ border-top: 1px solid #ccc;
+
+ &:first-child {
+ background-color: white;
+ border-top: none;
+ }
+
+ &:nth-child(even) {
+ background-color: #f4f4f4;
+ }
+
+ &:last-child {
+ background-color: white;
+ }
+ }
+}
+
+
// Shared Sass variables, which can be used to adjust Ionic's
// default Sass variables, belong in "theme/variables.scss".
//
diff --git a/app/src/components/latest-blocks/latest-blocks.html b/app/src/components/latest-blocks/latest-blocks.html
index 8268be4..26c6a30 100644
--- a/app/src/components/latest-blocks/latest-blocks.html
+++ b/app/src/components/latest-blocks/latest-blocks.html
@@ -5,9 +5,9 @@
-
+
-
+
Height
Age
Timestamp
@@ -15,7 +15,8 @@
Mined By
Size
-
+
+
{{block.height}}
@@ -35,7 +36,8 @@
{{ block.size }}
-
+
+
diff --git a/app/src/components/latest-blocks/latest-blocks.scss b/app/src/components/latest-blocks/latest-blocks.scss
index 0ae897d..e03ff64 100644
--- a/app/src/components/latest-blocks/latest-blocks.scss
+++ b/app/src/components/latest-blocks/latest-blocks.scss
@@ -1,23 +1,2 @@
latest-blocks {
- ion-grid {
- // border: 2px solid green;
- margin: 10px 0 20px;
-
- ion-row {
- border-top: 1px solid #ccc;
- }
-
- ion-row:nth-child(even) {
- background-color: #f4f4f4;
- }
-
- ion-row:first-child {
- background-color: white;
- border-top: none;
- }
-
- ion-row:last-child {
- background-color: white;
- }
- }
}
diff --git a/app/src/components/latest-transactions/latest-transactions.html b/app/src/components/latest-transactions/latest-transactions.html
index 55e5084..d1f13ac 100644
--- a/app/src/components/latest-transactions/latest-transactions.html
+++ b/app/src/components/latest-transactions/latest-transactions.html
@@ -4,14 +4,14 @@
-
+
-
+
Hash
Value Out
-
+
{{ tx.txid }}
diff --git a/app/src/components/latest-transactions/latest-transactions.scss b/app/src/components/latest-transactions/latest-transactions.scss
index 1b68322..4b8b617 100644
--- a/app/src/components/latest-transactions/latest-transactions.scss
+++ b/app/src/components/latest-transactions/latest-transactions.scss
@@ -1,23 +1,2 @@
latest-transactions {
- ion-grid {
- // border: 2px solid green;
- margin: 10px 0 20px;
-
- ion-row {
- border-top: 1px solid #ccc;
- }
-
- ion-row:nth-child(even) {
- background-color: #f4f4f4;
- }
-
- ion-row:first-child {
- background-color: white;
- border-top: none;
- }
-
- ion-row:last-child {
- background-color: white;
- }
- }
}