Skip to content

Commit

Permalink
Fixed problems in story book
Browse files Browse the repository at this point in the history
  • Loading branch information
dyatlov-a committed Oct 4, 2024
1 parent bca8ccb commit 45e25cd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@

@code {
private readonly string _fieldId = "input-date-only";
private DateOnly Date { get; set; } = DateOnly.FromDateTime(DateTime.UtcNow);

private DateOnly Date { get; set; } = new(DateTimeOffset.UtcNow.Year, 2, 28);
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

@code {
private readonly string _fieldId = "input-time-only";
private TimeOnly Time { get; set; } = TimeOnly.FromDateTime(DateTime.UtcNow);

private TimeOnly Time { get; set; } = new(13, 30);
}
1 change: 0 additions & 1 deletion src/Inc.TeamAssistant.Stories/Layouts/DarkLayout.razor.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.dark-layout {
background-color: #616161;
padding: 20px;
min-height: 400px;
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.light-light {
background-color: #dfdfdf;
padding: 20px;
min-height: 400px;
}

0 comments on commit 45e25cd

Please sign in to comment.