parent
cc027a1f44
commit
d32ad07fe4
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
|||||||
|
<div
|
||||||
|
class="item"
|
||||||
|
ondragover="event.preventDefault();"
|
||||||
|
draggable="true"
|
||||||
|
@ondragstart="@OnDragStart"
|
||||||
|
@ondrop="@OnDrop"
|
||||||
|
@ondragenter="@OnDragEnter"
|
||||||
|
@ondragleave="@OnDragLeave">
|
||||||
|
|
||||||
|
@if (Item != null)
|
||||||
|
{
|
||||||
|
//<img src="data:image/png;base64, @(Item.ImageBase64)" class="img-thumbnail" title="@Item.DisplayName" alt="@Item.DisplayName"/>
|
||||||
|
@Item.DisplayName
|
||||||
|
}
|
||||||
|
</div>
|
@ -1,8 +1,9 @@
|
|||||||
@page "/inventaire"
|
@page "/inventaire"
|
||||||
|
@using System.Globalization
|
||||||
|
@using BlazorApp1.Components
|
||||||
|
|
||||||
<h1>Inventaire</h1>
|
<h1>Inventaire</h1>
|
||||||
|
|
||||||
@OnReadData;
|
|
||||||
<div>
|
<div>
|
||||||
<BlazorApp1.Components.Inventory Items="Items" totalItems="totalItems"/>
|
<Inventory Items="Items"/>
|
||||||
</div>
|
</div>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -0,0 +1,13 @@
|
|||||||
|
.css-grid[b-3fa8gzmeax] {
|
||||||
|
grid-template-columns: repeat(4,minmax(0,1fr));
|
||||||
|
gap: 10px;
|
||||||
|
display: grid;
|
||||||
|
width: 286px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.css-gridInv[b-3fa8gzmeax] {
|
||||||
|
grid-template-columns: repeat(10,minmax(0,1fr));
|
||||||
|
gap: 10px;
|
||||||
|
display: grid;
|
||||||
|
width: 686px;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue