diff --git a/src/app/shared/components/header/header.component.html b/src/app/shared/components/header/header.component.html
index 27d9453..2ecffc6 100755
--- a/src/app/shared/components/header/header.component.html
+++ b/src/app/shared/components/header/header.component.html
@@ -41,7 +41,7 @@
             
             <span class="flag " [ngStyle]="{ 'background-image': 'url(assets/img/' + translate.getCurrentLang() + '.jpg)'}"></span> 
             <!--<span class="flag"  ngIf="translate.getCurrentLang() =='de'" style="background-image: url('assets/img/german.jpg')"></span>-->
-            <select class="langbut py-2 ml-1" #langSelect (change)="translate.changeLang(langSelect.value)">
+            <select class="langbut py-2 mx-1" #langSelect (change)="translate.changeLang(langSelect.value)">
               <option *ngFor="let lang of translate.getLanguage()" [value]="lang" [selected]="lang == translate.getCurrentLang()">{{translate.langLabel[lang]}}</option>
             </select>
             <i class="arrow_drpdwn"></i>
diff --git a/src/app/shared/components/siteheader/siteheader.component.html b/src/app/shared/components/siteheader/siteheader.component.html
index 5e65f3e..c724c92 100644
--- a/src/app/shared/components/siteheader/siteheader.component.html
+++ b/src/app/shared/components/siteheader/siteheader.component.html
@@ -36,7 +36,7 @@
         <div class="nav-item dropdown bg-white px-2 d-inline-block ml-2 order-1 order-sm-2">
           <span class="flag " [ngStyle]="{ 'background-image': 'url(assets/img/' + translate.getCurrentLang() + '.jpg)'}"></span> 
           <!--<span class="flag"  ngIf="translate.getCurrentLang() =='de'" style="background-image: url('assets/img/german.jpg')"></span>-->
-          <select class="langbut py-2 ml-1" #langSelect (change)="translate.changeLang(langSelect.value)">
+          <select class="langbut py-2 mx-1" #langSelect (change)="translate.changeLang(langSelect.value)">
             <option *ngFor="let lang of translate.getLanguage()" [value]="lang" [selected]="lang == translate.getCurrentLang()">{{translate.langLabel[lang]}}</option>
           </select>
           <i class="arrow_drpdwn"></i>
diff --git a/src/app/view/home/block-detail-list/block-detail-list.component.html b/src/app/view/home/block-detail-list/block-detail-list.component.html
index e9fdb20..05ea132 100644
--- a/src/app/view/home/block-detail-list/block-detail-list.component.html
+++ b/src/app/view/home/block-detail-list/block-detail-list.component.html
@@ -28,7 +28,6 @@
   <div class="col-md-3">
     <div
       class="text-center detail_div"
-      [ngStyle]="{ 'min-height.px': minHeight }"
     >
       <p class="mb-0 desc">{{ "home.BLOCKCHAIN_HEIGHT" | translate }}</p>
       <p
@@ -42,7 +41,6 @@
   <div class="col-md-3">
     <div
       class="text-center detail_div"
-      [ngStyle]="{ 'min-height.px': minHeight }"
     >
       <p class="mb-0 desc">{{ "home.LATEST_BLOCK" | translate }}</p>
       <p
@@ -81,7 +79,6 @@
   <div class="col-md-3">
     <div
       class="text-center detail_div"
-      [ngStyle]="{ 'min-height.px': minHeight }"
     >
       <p class="mb-0 desc">{{ "home.COIN_IN" | translate }}</p>
       <p
diff --git a/src/app/view/home/block-detail-list/block-detail-list.component.ts b/src/app/view/home/block-detail-list/block-detail-list.component.ts
index 9f9b71d..74cffe6 100644
--- a/src/app/view/home/block-detail-list/block-detail-list.component.ts
+++ b/src/app/view/home/block-detail-list/block-detail-list.component.ts
@@ -36,7 +36,7 @@ export class BlockDetailListComponent implements OnInit {
   }
 
   ngAfterViewInit() {
-    this.minHeight = this.elementView.nativeElement.offsetHeight;
+    // this.minHeight = this.elementView.nativeElement.offsetHeight;
   }
 
   getBlockDetails() {
diff --git a/src/app/view/home/graph-list/graph-list.component.ts b/src/app/view/home/graph-list/graph-list.component.ts
index f02feda..ee71ecd 100644
--- a/src/app/view/home/graph-list/graph-list.component.ts
+++ b/src/app/view/home/graph-list/graph-list.component.ts
@@ -403,6 +403,7 @@ export class GraphListComponent implements OnInit {
               let BlocksChartDate = res.response.blockDate;
                 let TargetDifficulty = res.response.TargetDifficulty;
                 let range = [res.response.Minrange, res.response.Maxrange]
+                let tickformat = res.response.tickFormat;
                 this.lg_last =
                 TargetDifficulty[TargetDifficulty.length - 1];
                 
@@ -412,7 +413,8 @@ export class GraphListComponent implements OnInit {
                         DifficultychartDate,
                         TargetDifficulty,
                         this.Type,
-                        range
+                        range,
+                        tickformat
                       );
                     break;
                   case 'target':
@@ -420,7 +422,8 @@ export class GraphListComponent implements OnInit {
                         DifficultychartDate,
                         TargetDifficulty,
                         this.Type,
-                        range
+                        range,
+                        tickformat
                       );
                    break;
                 }
@@ -460,7 +463,7 @@ export class GraphListComponent implements OnInit {
     });
   }
 
-  difficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range) {
+  difficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range, tickformat) {
     console.log('range rangerangerange@@@@@@@22444',range);
     this.linearGraphData = {
       data: [
@@ -512,7 +515,7 @@ export class GraphListComponent implements OnInit {
         showlegend: false,
         xaxis: {
           tickangle: -45,
-          tickformat: '%m-%d',
+          tickformat: tickformat,
           showgrid: true,
           fixedrange: true
         },
@@ -738,6 +741,7 @@ export class GraphListComponent implements OnInit {
   }
 
   growthFunc(gDate, gReward, gaddedreward) {
+    console.log('gDate gReward gaddedreward',gDate, gReward, gaddedreward)
     this.growthGraphData = {
       data: [
         {
@@ -1087,7 +1091,7 @@ export class GraphListComponent implements OnInit {
       options: null,
     };
   }
-  totaldifficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range) {
+  totaldifficultyChartFunc(DifficultychartDate, TargetDifficulty, Type, range, tickformat) {
     this.linearTotalGraphData = {
       data: [
         {
@@ -1098,7 +1102,7 @@ export class GraphListComponent implements OnInit {
           type: 'scatter',
           name: '',
           line: { color: '#ac3333' },
-          hovertemplate: '%{x}<br> Difficulty : %{text:,}',
+          hovertemplate: '%{DifficultychartDate}<br> Difficulty : %{text:,}',
         },
       ],
       layout: {
@@ -1108,7 +1112,7 @@ export class GraphListComponent implements OnInit {
         showlegend: false,
         xaxis: {
           tickangle: -45,
-          tickformat: '%m-%d',
+          tickformat: tickformat,
           fixedrange: true,
           showgrid: true
         },
diff --git a/src/assets/css/style.css b/src/assets/css/style.css
index 970f744..081bab8 100644
--- a/src/assets/css/style.css
+++ b/src/assets/css/style.css
@@ -286,6 +286,7 @@ a:focus {
   box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
   padding: 20px;
   transition: 0.3s linear all;
+  min-height: 100%;
 }
 .detail_div .count {
   font-size: 25px;