feat: Enhance UI/UX across multiple views with consistent styling and improved layout

This commit is contained in:
Blake Ridgway 2025-06-21 16:30:59 -05:00
parent 9931687419
commit 36d4ae00dd
16 changed files with 609 additions and 60 deletions

View file

@ -23,12 +23,18 @@ namespace turf_tasker.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<decimal?>("AppliedAmount")
.HasColumnType("TEXT");
b.Property<DateTime>("EventDate")
.HasColumnType("TEXT");
b.Property<int>("EventType")
.HasColumnType("INTEGER");
b.Property<decimal?>("MowerHeightInches")
.HasColumnType("TEXT");
b.Property<int?>("MowingPattern")
.HasColumnType("INTEGER");
@ -36,6 +42,14 @@ namespace turf_tasker.Migrations
.HasMaxLength(500)
.HasColumnType("TEXT");
b.Property<string>("ProblemObserved")
.HasMaxLength(250)
.HasColumnType("TEXT");
b.Property<string>("ProductUsed")
.HasMaxLength(200)
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("LawnCareEvents");