Updating Mudblazor Version

This commit is contained in:
Jonathan
2025-04-27 19:34:50 -04:00
parent 38ff4e3e89
commit e820457176
153 changed files with 5010 additions and 2059 deletions
+16 -20
View File
@@ -5,7 +5,7 @@
@inject INoteService NoteService
@implements IDisposable
@inject IDataCollectionService DataCollectionService
@inject IDataCollectionService DataCollectionService
@page "/notes/{href1}/{href2?}/{href3?}/{href4?}/{href5?}"
@@ -30,6 +30,7 @@ else
{
continue;
}
<NoteComponent NoteContentModel="note"/>
}
</PaperComponent>
@@ -39,11 +40,11 @@ else
<style>
pre code {
color: white;
color: white;
}
h1 {
display: block;
display: block;
font-size: 2em;
margin-top: 0.67em;
margin-bottom: 0.67em;
@@ -51,7 +52,7 @@ else
margin-right: 0;
font-weight: bold;
}
h2 {
display: block;
font-size: 1.5em;
@@ -61,11 +62,11 @@ else
margin-right: 0;
font-weight: bold;
}
li {
display: list-item;
display: list-item;
}
p {
display: block;
margin-top: 1em;
@@ -73,7 +74,7 @@ else
margin-left: 0;
margin-right: 0;
}
ul {
display: block;
list-style-type: disc;
@@ -83,7 +84,7 @@ else
margin-right: 0;
padding-left: 40px;
}
pre {
background: black;
padding: 2px;
@@ -92,20 +93,15 @@ else
@code {
[Parameter]
public string? Href1 { get; set; }
[Parameter] public string? Href1 { get; set; }
[Parameter]
public string? Href2 { get; set; }
[Parameter] public string? Href2 { get; set; }
[Parameter]
public string? Href3 { get; set; }
[Parameter] public string? Href3 { get; set; }
[Parameter]
public string? Href4 { get; set; }
[Parameter] public string? Href4 { get; set; }
[Parameter]
public string? Href5 { get; set; }
[Parameter] public string? Href5 { get; set; }
private string Href => Href5 ?? Href4 ?? Href3 ?? Href2 ?? Href1 ?? "";