We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 597d16d commit 615d6cfCopy full SHA for 615d6cf
1 file changed
frontend/src/TransitPredictionsPage.js
@@ -171,7 +171,9 @@ export default function TransitPredictionsPage() {
171
<span className="text-2xl">No predictions available at this time</span>
172
) : (
173
<div>
174
- {maybeRenderCallButton(stop.id)}
+ <div className = "sm:hidden">
175
+ {maybeRenderCallButton(stop.id)}
176
+ </div>
177
{stop.predictions
178
.sort((a, b) => a.route.localeCompare(b.route))
179
.map((prediction, predictionIndex) => (
0 commit comments