- Timestamp |
+ Timestamp |
{{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }}
@@ -41,7 +41,7 @@
- Hash |
+ Hash |
{{ block.id | shortenString : 13 }} |
@@ -117,7 +117,7 @@
- |
+ |
|
@@ -135,7 +135,7 @@
- |
+ |
|
diff --git a/frontend/src/app/components/block/block.component.scss b/frontend/src/app/components/block/block.component.scss
index 859b81409..8fdae6df5 100644
--- a/frontend/src/app/components/block/block.component.scss
+++ b/frontend/src/app/components/block/block.component.scss
@@ -5,6 +5,12 @@
border-top: 5px solid #FFF;
}
-.mobile-width {
- width: 130px;
+.td-width {
+ width: 175px;
+}
+
+@media (max-width: 767.98px) {
+ .td-width {
+ width: 150px;
+ }
}
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss
index bbe983877..9fae107e4 100644
--- a/frontend/src/styles.scss
+++ b/frontend/src/styles.scss
@@ -50,6 +50,12 @@ body {
box-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.075);
}
+@media (max-width: 767.98px) {
+ .box {
+ padding: 0.75rem;
+ }
+}
+
.form-control {
color: #495057;
}
|