Updating Mudblazor Version
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user