diff --git a/src/App.vue b/src/App.vue index b3e647d2901a1d18785ec3b7a3cd5e8d9a05d20a..a2411fc3a9fc10d355fdeb78b6f665a08edf4914 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 3d319b20ed3db84dac66610992ad382d1762b0d2..92f78640696a7d660b081dda137af222f678e2e4 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(' ', '')]); }