From dde25f79db54e39fae6f9ee8c04a12c6210138f5 Mon Sep 17 00:00:00 2001
From: Cee <cnell@usgs.gov>
Date: Mon, 9 Sep 2024 18:13:38 -0700
Subject: [PATCH] bold headers

---
 src/App.vue                      | 2 +-
 src/components/BeeswarmChart.vue | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index b3e647d..a2411fc 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -134,7 +134,7 @@ h3{
   padding-top: 0.5em;
   padding-bottom: .25em;
   font-family: $Dosis;
-  font-weight: 400;
+  font-weight: 600;
   color: var(--color-text);
   @media screen and (max-width: 750px) {
       font-size: 2.5rem;
diff --git a/src/components/BeeswarmChart.vue b/src/components/BeeswarmChart.vue
index 3d319b2..92f7864 100644
--- a/src/components/BeeswarmChart.vue
+++ b/src/components/BeeswarmChart.vue
@@ -224,7 +224,7 @@ function createBeeswarmChart() {
     .attr("font-weight", 700)
     .attr("transform", `translate(${margin.left}, ${margin.top / 2})`)
     .text(t('text.components.chartText.bubbleYlabelMax'));
-console.log(t('text.components.chartText'))
+
   svg.append('text')
     .attr("class", "yLabel")
     .attr("text-anchor", "left")
@@ -331,7 +331,7 @@ function handleMouseOver(event, d) {
 
     /// Select the tooltip element
   const tooltip = d3.select('#tooltip');
-  const tooltipTemplate = "{determinant} {appeared} {count} {studyLabel}" // construct tempalte of tooltip sentence
+  const tooltipTemplate = "{determinant} {appeared} {count} {studyLabel}" 
 
   function getTranslatedDeterminant(d) {
     return isSpanish ? d.determinant_es : d.determinant_wrapped;
@@ -415,7 +415,6 @@ function handleMouseOver(event, d) {
     .style('stroke', dimensionColors[d.dimension.replace(' ', '')]);
 
     d3.select('#text2').select(`#${patternId} path`)
-    //.style('fill', `url(#pattern-stripe)`)
     .attr('stroke', dimensionColors[d.dimension.replace(' ', '')]);
 }
 
-- 
GitLab