66 lines
1.7 KiB
HTML
66 lines
1.7 KiB
HTML
<div id="bet-history" class="page-layout carded fullwidth inner-scroll">
|
|
<!-- TOP BACKGROUND -->
|
|
<div class="top-bg accent"></div>
|
|
<!-- / TOP BACKGROUND -->
|
|
|
|
<!-- CENTER -->
|
|
<div class="center">
|
|
<!-- HEADER -->
|
|
<div
|
|
class="header accent"
|
|
fxLayout="column"
|
|
fxLayoutAlign="center center"
|
|
fxLayout.gt-xs="row"
|
|
fxLayoutAlign.gt-xs="space-between center"
|
|
>
|
|
<!-- APP TITLE -->
|
|
<div
|
|
class="logo mb-24 mb-sm-0"
|
|
fxLayout="row"
|
|
fxLayoutAlign="start center"
|
|
>
|
|
<mat-icon
|
|
class="logo-icon s-32 mr-16"
|
|
[@animate]="{ value: '*', params: { delay: '50ms', scale: '0.2' } }"
|
|
>
|
|
shopping_basket
|
|
</mat-icon>
|
|
<span
|
|
class="logo-text h1"
|
|
[@animate]="{ value: '*', params: { delay: '100ms', x: '-25px' } }"
|
|
>베팅내역</span
|
|
>
|
|
</div>
|
|
<!-- / APP TITLE -->
|
|
|
|
<!-- SEARCH -->
|
|
|
|
<!-- <div class="search-wrapper ml-sm-32">
|
|
<div class="search" fxFlex fxLayout="row" fxLayoutAlign="start center">
|
|
<mat-icon>search</mat-icon>
|
|
<input #filter placeholder="Search for an order" />
|
|
</div>
|
|
</div> -->
|
|
<!-- / SEARCH -->
|
|
</div>
|
|
|
|
<!-- / HEADER -->
|
|
|
|
<!-- CONTENT CARD -->
|
|
<div class="content-card">
|
|
<app-bet-history-table></app-bet-history-table>
|
|
<app-bet-history-table></app-bet-history-table>
|
|
<app-bet-history-table></app-bet-history-table>
|
|
<mat-paginator
|
|
#paginator
|
|
[pageIndex]="0"
|
|
[pageSize]="10"
|
|
[pageSizeOptions]="[5, 10, 25, 100]"
|
|
>
|
|
</mat-paginator>
|
|
</div>
|
|
<!-- / CONTENT CARD -->
|
|
</div>
|
|
<!-- / CENTER -->
|
|
</div>
|