Fix tv only (#598)

* Remove TV Only container.
This commit is contained in:
Miguel Medeiros
2021-06-29 14:10:15 -03:00
committed by GitHub
parent df588695ec
commit 807d4b0327
3 changed files with 19 additions and 27 deletions

View File

@@ -4,8 +4,6 @@
<div class="spinner-border text-light"></div>
</div>
<div class="tv-only" i18n="television.tv-only">TV only</div>
<div class="tv-container" *ngIf="!loading">
<div class="chart-holder" *ngIf="mempoolStats.length">

View File

@@ -31,6 +31,15 @@
.blockchain-wrapper {
display: flex;
height: 100%;
min-height: 240px;
position: relative;
top: -20px;
@media(min-height: 800px) {
top: 10px;
}
.position-container {
position: absolute;
left: 50%;
@@ -76,29 +85,13 @@
}
}
.tv-only {
display: block;
height: 100vh;
width: 100%;
position: relative;
display: flex;
text-align: center;
flex-direction: row;
align-items: center;
justify-content: center;
@media(min-width: 768px) {
display: none;
}
@media(max-height: 720px) {
display: flex;
}
}
.tv-container {
display: none;
@media(min-width: 768px) {
display: flex;
}
@media(max-height: 720px) {
display: none;
display: flex;
margin-top: 0px;
flex-direction: column;
@media(max-height: 700px) {
.blockchain-wrapper{
display: none !important;
}
}
}