26 lines
		
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="text-center" class="blockchain-wrapper" [class.time-ltr]="timeLtr" [class.ltr-transition]="ltrTransitionEnabled" #container>
 | |
|   <div class="position-container" [ngClass]="network ? network : ''" [style.top]="(height / 3) + 'px'">
 | |
|     <span>
 | |
|       <div class="blocks-wrapper">
 | |
|         <app-mempool-blocks [minimal]="true" [count]="mempoolBlocks" [blockWidth]="blockWidth"></app-mempool-blocks>
 | |
|         <app-blockchain-blocks [minimal]="true" [count]="blockchainBlocks" [blockWidth]="blockWidth"></app-blockchain-blocks>
 | |
|       </div>
 | |
|       <div class="divider" [style.top]="-(height / 6) + 'px'">
 | |
|         <svg
 | |
|           viewBox="0 0 2 175"
 | |
|           [style.width]="'2px'"
 | |
|           [style.height]="(5 * height / 6) + 'px'"
 | |
|         >
 | |
|           <line
 | |
|             class="divider-line"
 | |
|             x0="0"
 | |
|             x1="0"
 | |
|             y0="0"
 | |
|             y1="175px"
 | |
|           ></line>
 | |
|         </svg>
 | |
|       </div>
 | |
|     </span>
 | |
|   </div>
 | |
| </div>
 |