Pagination style fix

This commit is contained in:
2025-12-01 12:35:22 +01:00
parent cb0d050ad4
commit a71b6feefc
4 changed files with 22 additions and 10 deletions

View File

@@ -9,6 +9,7 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
<link href="DiunaBI.UI.Web.styles.css" rel="stylesheet" />
<link href="app.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="favicon.png" />
<script src="https://accounts.google.com/gsi/client" async defer></script>
<HeadOutlet />

View File

@@ -49,3 +49,12 @@ h1:focus {
.darker-border-checkbox.form-check-input {
border-color: #929292;
}
/* remove list markers for MudPagination */
.mud-pagination {
list-style: none;
padding-inline-start: 0;
}
.mud-pagination li::marker {
display: none;
}