mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
14 lines
600 B
HTML
14 lines
600 B
HTML
<app-search-bar></app-search-bar>
|
|
<div class="flex flex-1 overflow-y-hidden">
|
|
<!-- TODO: adjust sizing -->
|
|
<div
|
|
class="basis-2/3 flex-1 overflow-y-auto scrollbar scrollbar-w-2 scrollbar-h-2 scrollbar-track-base-300 scrollbar-thumb-neutral scrollbar-thumb-rounded-full"
|
|
(scroll)="resultTable.tableScrolled($event)">
|
|
<app-result-table #resultTable (rowClicked)="chartSidebar.onRowClicked($event)"></app-result-table>
|
|
</div>
|
|
<div class="basis-1/3 min-w-[310px] max-w-[512px]">
|
|
<app-chart-sidebar #chartSidebar></app-chart-sidebar>
|
|
</div>
|
|
</div>
|
|
<app-status-bar #statusBar></app-status-bar>
|