-
+ |
{{ block.height }}
|
@@ -89,7 +89,6 @@
|
-
|
@@ -98,7 +97,7 @@
|
|
-
+ |
|
diff --git a/frontend/src/app/components/blocks-list/blocks-list.component.scss b/frontend/src/app/components/blocks-list/blocks-list.component.scss
index 1a32f7ed7..ea6e93347 100644
--- a/frontend/src/app/components/blocks-list/blocks-list.component.scss
+++ b/frontend/src/app/components/blocks-list/blocks-list.component.scss
@@ -51,7 +51,12 @@ tr, td, th {
.pool.widget {
width: 40%;
padding-left: 24px;
- @media (max-width: 376px) {
+ @media (min-width: 768px) AND (max-width: 926px) {
+ padding-left: 0px;
+ width: 60%;
+ }
+ @media (max-width: 430px) {
+ padding-left: 0px;
width: 60%;
}
}
@@ -59,6 +64,10 @@ tr, td, th {
display: inline-block;
vertical-align: text-top;
padding-left: 10px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ max-width: 160px;
}
.height {
@@ -69,6 +78,12 @@ tr, td, th {
@media (max-width: 576px) {
width: 10%;
}
+ @media (min-width: 768px) AND (max-width: 926px) {
+ width: 30%;
+ }
+ @media (max-width: 430px) {
+ width: 30%;
+ }
}
.height.legacy {
width: 15%;
@@ -92,7 +107,7 @@ tr, td, th {
.mined {
width: 13%;
- @media (max-width: 576px) {
+ @media (max-width: 730px) {
display: none;
}
}
@@ -138,7 +153,7 @@ tr, td, th {
.fees {
width: 8%;
- @media (max-width: 650px) {
+ @media (max-width: 820px) {
display: none;
}
}
@@ -163,6 +178,16 @@ tr, td, th {
width: 30%;
padding-right: 0;
}
+ @media (min-width: 768px) AND (max-width: 926px) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90px;
+ }
+ @media (max-width: 430px) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ max-width: 90px;
+ }
}
.size {
@@ -189,10 +214,10 @@ tr, td, th {
.health {
width: 10%;
- @media (max-width: 1000px) {
+ @media (max-width: 1105px) {
width: 13%;
}
- @media (max-width: 950px) {
+ @media (max-width: 560px) {
display: none;
}
@@ -202,7 +227,7 @@ tr, td, th {
}
.health.widget {
width: 25%;
- @media (max-width: 1000px) {
+ @media (max-width: 1105px) {
display: none;
}
@media (max-width: 767px) {
@@ -242,4 +267,4 @@ tr, td, th {
vertical-align: middle;
max-width: 50vw;
text-align: left;
-}
\ No newline at end of file
+}
diff --git a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
index 0950a11ed..dace043f8 100644
--- a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
+++ b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html
@@ -2,17 +2,18 @@
- Height |
- Adjusted |
- Difficulty |
- Change |
+ Height |
+ Adjusted |
+ Difficulty |
+ Change |
- {{ diffChange.height
- }} |
-
+ |
+ {{ diffChange.height }}
+ |
+
|
{{ diffChange.difficultyShorten }} |
@@ -23,8 +24,8 @@
- |
- |
+ |
+ |
|
|
diff --git a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss
index f379effe2..f53c052db 100644
--- a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss
+++ b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss
@@ -17,3 +17,12 @@
}
}
}
+
+.date {
+ @media (min-width: 767px) AND (max-width: 991px) {
+ display: none;
+ }
+ @media (max-width: 500px) {
+ display: none;
+ }
+}
\ No newline at end of file
|