Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Grzegorz Choiński <[email protected]>
  • Loading branch information
Wallted committed Jan 26, 2024
1 parent 227b436 commit 22553fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@
</mat-accordion>
</div>
</div>
<mat-chip-list class="d-none d-lg-inline">
<mat-chip-listbox class="d-none d-lg-inline">
<div class="floating-buttons">
<mat-chip class="floating-button-large" [routerLink]='["/products"]' disableRipple><i class=" material-icons ">list</i>Manage products</mat-chip>
<mat-chip class="floating-button-large" (click)="addMeal()" disableRipple><i class=" material-icons ">add</i> Add new meal </mat-chip>
<mat-chip-option class="floating-button-large" [routerLink]='["/products"]' disableRipple><i class=" material-icons ">list</i>Manage products</mat-chip-option>
<mat-chip-option class="floating-button-large" (click)="addMeal()" disableRipple><i class=" material-icons ">add</i> Add new meal </mat-chip-option>
</div>
</mat-chip-list>
</mat-chip-listbox>

<div class="floating-buttons">
<button mat-fab class=" floating-button d-inline d-lg-none " [routerLink]='["/products"]'><i class="material-icons ">list</i></button>
Expand Down
8 changes: 4 additions & 4 deletions Foodie/ClientApp/src/app/products/products.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ <h1 class="text-center mb-3">Products</h1>
</mat-table>

</div>
<mat-chip-list class="d-none d-lg-inline">
<mat-chip-listbox class="d-none d-lg-inline">
<div class="floating-buttons">
<mat-chip class="floating-button-large" [routerLink]='["/mealcalendar"]'><i class=" material-icons ">calendar_today</i>Manage meals</mat-chip>
<mat-chip class="floating-button-large" (click)="addProduct()"><i class=" material-icons ">add</i> Add new product </mat-chip>
<mat-chip-option class="floating-button-large" [routerLink]='["/mealcalendar"]'><i class=" material-icons ">calendar_today</i>Manage meals</mat-chip-option>
<mat-chip-option class="floating-button-large" (click)="addProduct()"><i class=" material-icons ">add</i> Add new product </mat-chip-option>
</div>
</mat-chip-list>
</mat-chip-listbox>

<div class="floating-buttons">
<button mat-fab class=" floating-button d-inline d-lg-none " [routerLink]='["/mealcalendar"]'><i
Expand Down

0 comments on commit 22553fc

Please sign in to comment.