mempool/frontend/src/app/components/television/television.component.scss

81 lines
1.2 KiB
SCSS
Raw Normal View History

2019-07-27 18:43:17 +03:00
.loading {
margin: auto;
width: 100%;
display: flex;
text-align: center;
justify-content: center;
height: 100vh;
align-items: center;
2019-07-27 18:43:17 +03:00
}
#tv-wrapper {
height: 100vh;
overflow: hidden;
position: relative;
2019-07-27 18:43:17 +03:00
}
.chart-holder {
position: relative;
2021-12-08 17:23:47 -05:00
height: 655px;
width: 100%;
margin: 30px auto 0;
2019-07-27 18:43:17 +03:00
}
.blockchain-wrapper {
display: block;
height: 100%;
min-height: 240px;
position: relative;
top: 30px;
.position-container {
position: absolute;
left: 0;
bottom: 170px;
transform: translateX(50vw);
}
#divider {
2022-08-29 19:02:22 +02:00
width: 2px;
height: 175px;
left: 0;
top: -40px;
position: absolute;
img {
position: absolute;
left: -100px;
top: -28px;
}
}
&.time-ltr {
.blocks-wrapper {
transform: scaleX(-1);
}
}
}
:host-context(.ltr-layout) {
.blockchain-wrapper.time-ltr .blocks-wrapper,
.blockchain-wrapper .blocks-wrapper {
direction: ltr;
}
}
:host-context(.rtl-layout) {
.blockchain-wrapper.time-ltr .blocks-wrapper,
.blockchain-wrapper .blocks-wrapper {
direction: rtl;
}
}
.tv-container {
display: flex;
margin-top: 0px;
flex-direction: column;
}