Hi. How can I tweak (expand) the title width in my observable framework page? Here is my code:
---
theme: [light, wide]
---
# My Chart Title Wraps Too Early ...
js
import {cust_histogram} from "./components/cust_histogram.js";
const max_donation_hist = FileAttachment("data/max_donation_hist.tsv").tsv({typed: true});
<div class="grid grid-cols-1">
<div class="card grid-rowspan-1">
${resize(width => cust_histogram(max_donation_hist, {width}))}
</div>
</div>
My # title line is only half as wide as the chart, and then it wraps. The front matter “wide” parameter seems to only apply to the charts.
Thanks for any advice.