Files
BWPM/BlazorApp/Pages/Admin/Dashboard/Dashboard.razor
2023-05-15 12:53:01 +02:00

55 lines
865 B
Plaintext

@page "/Admin/Dashboard"
@inject NavigationManager NavManager
@using System.ComponentModel.DataAnnotations
@using BWPMModels;
@*<h3><b>Übersicht</b></h3>
<p></p>*@
<style>
.e-icons {
font-size: 10px;
}
.e-search:before {
content: '\e993';
}
.e-upload:before {
content: '\e725';
}
.e-companylist:before {
content: '\e71f';
}
.e-font:before {
content: '\e34c';
}
.e-plus-icon::before {
content: '\e78f';
}
.e-pager {
display: none;
}
.btn {
border-radius: 0;
height: 24px;
width: 24px;
@* background-color: #007BFF; *@
}
.e-copy::before {
content: '\e77b';
}
.e-btn.e-icon-btn {
padding: initial;
}
</style>
@code {
}