Skip to content

Commit 9afd7ad

Browse files
committed
Fix CSS scrolling overflow on mobile
1 parent f911d3d commit 9afd7ad

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

_sass/custom/course_overrides.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,8 @@
290290

291291
.py-ref-table {
292292
table-layout: fixed;
293-
width: 100%;
293+
overflow-x: auto;
294+
display: block;
294295

295296
th:nth-child(1),
296297
td:nth-child(1) {

reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ These are functions in the `datascience` library that are used in the course tha
137137

138138
## Histogram Bounds Language
139139

140-
Histogram bins include the data at their left endpoint, but not the data at their right endpoint, except for the rightmost bin which includes both endpoints. When we ask you questions relating to ranges of values in the bins of histograms, we will use one of the three phrases below.
140+
Histogram bins include the data at their left endpoint, but not the data at their right endpoint. The only exception is the rightmost bin, which includes *both* endpoints. When we ask you questions relating to ranges of values in the bins of histograms, we will use one of the three phrases below.
141141

142142
| **Phrase** | **Interpretation** |
143143
| Between x and y | Greater than or equal to x and less than y |

0 commit comments

Comments
 (0)