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
+11 -12
View File
@@ -28,20 +28,20 @@
.unitMemoryContainer {
}
.unitMemoryContainer.correct {
border-color: green;
.unitMemoryContainer.correct {
border-color: green;
}
}
.unitMemoryContainer.wrong {
border-color: red;
}
.unitMemoryContainer.wrong {
border-color: red;
}
.wrongAnswer {
padding: 12px;
color: #ff2525;
font-weight: 700;
background-color: rgba(0,0,0,0.4);
background-color: rgba(0, 0, 0, 0.4);
padding: 8px;
border-radius: 2px;
}
@@ -49,14 +49,13 @@
@code {
[Parameter]
public MemoryEntityModel EntityMemory { get; set; } = default!;
[Parameter] public MemoryEntityModel EntityMemory { get; set; } = default!;
private List<MemoryQuestionModel> questions { get; set; } = default!;
private bool hasBeenSubmitted = false;
private bool isCorrect = false;
private bool isWrong = false;
private bool hasBeenSubmitted;
private bool isCorrect;
private bool isWrong;
public int Guess { get; set; }