Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<form #alyticsForm="ngForm">
<div class="top-container" style="overflow-y: hidden;">
<div class="container">
<div class="title-container">
<div>
<form #alyticsForm="ngForm">
<!-- Page title and subtitle-->
<div>
<h1 class="text-muted mb-0">Dashboard</h1>
Expand Down Expand Up @@ -74,12 +73,12 @@ <h1 class="text-muted mb-0">Dashboard</h1>
</select>
</div>
</div>
</div>
</form>
</div>
</div>
</div>

<div class="bottom-container scroll">
<div class="bottom-container">
<!-- Public Engagement Overview -->
<div class="container pb-0" id="public-engagement-overview">
<div class="row"><p>Public Engagement Overview</p></div>
Expand Down Expand Up @@ -187,5 +186,4 @@ <h1 class="text-muted mb-0">Dashboard</h1>
></apx-chart>
</div>
</div>
</div>
</form>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,8 @@ $stats-blue-1: #123B64;

// --- Bottom Container
.bottom-container {
&.scroll {
// Show vertical scrollbar only when content overflows viewport
// Show vertical scrollbar only when content overflows viewport
overflow-y: auto;
// height: 65.45vh; // TODO: need to dynamically calculate this.
height: 58.45vh; // TODO: need to dynamically calculate this.
}
}

// --- chart styling
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export class AnalyticsDashboardComponent implements OnInit, AfterViewInit {
},
chart: {
// Horizontal bar chart dynamic height adjustment
height: Math.max(260, apiData.length * 50)
height: Math.max(260, data.length * 50)
}
});
}
Expand Down
9 changes: 0 additions & 9 deletions admin/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,6 @@
<div class="spinner-new rotating"></div>
</div>
</app-root>

...
...
<body>
<app-root></app-root>

</body>
...
...
</body>

</html>