diff --git a/app/assets/stylesheets/colors.scss b/app/assets/stylesheets/colors.scss index a38cd534..09c0927a 100644 --- a/app/assets/stylesheets/colors.scss +++ b/app/assets/stylesheets/colors.scss @@ -57,6 +57,10 @@ $ideal: $purple; background-color: $white; } +.bg-color-gray-3 { + background-color: $gray-3; +} + .fill-black { fill: $black; } diff --git a/app/assets/stylesheets/dashboard.scss b/app/assets/stylesheets/dashboard.scss index 31a2285a..dde4a82e 100644 --- a/app/assets/stylesheets/dashboard.scss +++ b/app/assets/stylesheets/dashboard.scss @@ -1,5 +1,7 @@ @import 'bootstrap'; +@import 'colors'; @import 'fonts'; +@import 'borders'; .graph-header { @extend .font-bitter; @@ -10,6 +12,15 @@ font-family: 'Cabin', sans-serif; } +.harvey-ball__legend { + display: flex; + justify-content: space-around; + align-items: center; + @extend .p-3; + @extend .bg-color-gray-3; + @extend .border-radius-8; +} + .category-card { flex-basis: 20%; height: 600px; diff --git a/app/assets/stylesheets/fonts.scss b/app/assets/stylesheets/fonts.scss index 25eaad49..a6e87d66 100644 --- a/app/assets/stylesheets/fonts.scss +++ b/app/assets/stylesheets/fonts.scss @@ -8,6 +8,10 @@ font-family: 'Cabin', sans-serif; } +.font-size-14 { + font-size: 14px; +} + .weight-700 { font-weight: 700; } diff --git a/app/views/dashboard/_quality_framework_indicators.erb b/app/views/dashboard/_quality_framework_indicators.erb index 2b3d26bd..5b2fb827 100644 --- a/app/views/dashboard/_quality_framework_indicators.erb +++ b/app/views/dashboard/_quality_framework_indicators.erb @@ -1,46 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/app/views/dashboard/index.html.erb b/app/views/dashboard/index.html.erb index 72515319..694b4437 100644 --- a/app/views/dashboard/index.html.erb +++ b/app/views/dashboard/index.html.erb @@ -2,8 +2,73 @@

Areas Of Interest

<% end %> + + + + + + + + + + + + + + + + + + + + + + + + +
-

School Quality Framework Indicators

+
+

School Quality Framework Indicators

+ +
+
Warning
+ + + + + + + + + + + + + + + +
Ideal
+
+
<%= render partial: "quality_framework_indicators", locals: { category_presenters: @category_presenters } %>