From dadf8ea5cf5d8d9d87587b53d960a571de9457f2 Mon Sep 17 00:00:00 2001 From: "Brady P. Merkel" Date: Tue, 15 Oct 2024 21:14:17 -0400 Subject: [PATCH] Refine layout to freeze app bar and add spacing at the top of the scroll --- Client/Pages/Index.razor | 59 ++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 27 deletions(-) diff --git a/Client/Pages/Index.razor b/Client/Pages/Index.razor index cca22d6..d2d3690 100644 --- a/Client/Pages/Index.razor +++ b/Client/Pages/Index.razor @@ -8,7 +8,7 @@ @if (model != null) { - + @if (!IsSmallScreen) { FLL Judge Comments App @@ -17,11 +17,11 @@ + Disabled="@(!model.Areas.Any(a => a.Comments.Any(c => c.Selected)))" + Color="Color.Warning" UncheckedColor="@Color.Success" + Dense="true" + CheckedIcon="@Icons.Material.Filled.FilterListOff" + UncheckedIcon="@Icons.Material.Filled.FilterList"> @(FilterOn ? "SHOW ALL" : "SHOW SELECTIONS") @@ -31,11 +31,11 @@ + Dense="true" Color="@Color.Secondary" TriState="true" + CheckedIcon="@Icons.Material.Filled.FormatSize" + IndeterminateIcon="@Icons.Material.Filled.FormatSize" + UncheckedIcon="@Icons.Material.Filled.FormatSize" + Size="@(fontSize == null ? Size.Large : fontSize == true ? Size.Small : Size.Medium)" /> @if (!IsSmallScreen) { @@ -44,15 +44,20 @@ } +
+
+ @if (!FilterOn) { - - Balance positive with constructive feedback. - Be specific rather than generalizing, and make sure the team understands your point. - Always start and end on a positive note. - Call out their strengths (areas where they Accomplished or Exceeded) and - identify areas for improvement (areas where they were Beginning or Developing). - +
+ + Balance positive with constructive feedback. + Be specific rather than generalizing, and make sure the team understands your point. + Always start and end on a positive note. + Call out their strengths (areas where they Accomplished or Exceeded) and + identify areas for improvement (areas where they were Beginning or Developing). + +
} @@ -65,15 +70,15 @@ @area.Name - @if (!IsSmallScreen) - { - -  —  - - - @areaInfo.description - - } + @if (!IsSmallScreen) + { + +  —  + + + @areaInfo.description + + }