Skip to content

Commit

Permalink
scrolling formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanlleslie committed Nov 2, 2023
1 parent 30ea1ad commit 3bf45d2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 11 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,19 @@ li {
display: flex;
flex-direction: row;
width: 100%;
max-height: 100%;
min-height: calc(100vh);
}

#poem-container {
flex: 2;
overflow: auto;
max-height: calc(100vh);
}

#statement-selector {
font-size: 20px;
}

#poem-container::-webkit-scrollbar {
display: none;
}
4 changes: 3 additions & 1 deletion utils/numeracyChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ async function interactiveNumeracyChart(chart) {
.text("low prestige language")
.attr("y", chartHeight)
.attr("x", chartWidth / 4)
.attr("text-anchor", "middle");
.attr("text-anchor", "middle")
.style("font-size", "16px");

chart
.append("text")
.text("high prestige language")
Expand Down

0 comments on commit 3bf45d2

Please sign in to comment.