Skip to content

Commit

Permalink
Fix horizontal scrollbar on mobile, closes simonw#144
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jul 2, 2023
1 parent 49e0674 commit 7004652
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion templates/pages/tutorials/codespaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
<meta property="og:description" content="How to start using Datasette inside GitHub Codespaces.">
<meta property="og:image" content="https://raw.githubusercontent.com/simonw/codespaces-datasette/main/codespaces-ui.jpg">
<meta property="og:image:alt" content="Screenshot of the GitHub Codespaces interface.">
<style>
a, pre, code {
overflow-wrap: break-word;
}
</style>
{% endblock %}

{% block content %}
Expand Down Expand Up @@ -111,7 +116,8 @@
<p><code>wget https://static.simonwillison.net/static/2022/Manatee_Carcass_Recovery_Locations_in_Florida.csv</code></p>
<p>And insert it into our database:</p>
<pre><code>sqlite-utils insert data.db locations \
Manatee_Carcass_Recovery_Locations_in_Florida.csv --csv -d</code></pre>
Manatee_Carcass_Recovery_Locations_in_Florida.csv \
--csv -d</code></pre>
{% markdown %}
This creates a new table called `locations` containing the data from that CSV file - manatee carcass recovery locations in Florida dating back to 1974.

Expand Down

0 comments on commit 7004652

Please sign in to comment.