We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79939be commit f3520efCopy full SHA for f3520ef
1 file changed
frontend/src/TransitPredictionsPage.js
@@ -155,7 +155,9 @@ export default function TransitPredictionsPage() {
155
<span className="text-2xl">No predictions available at this time</span>
156
) : (
157
<div>
158
- {maybeRenderCallButton(stop.id)}
+ <div className = "sm:hidden">
159
+ {maybeRenderCallButton(stop.id)}
160
+ </div>
161
{stop.predictions
162
.sort((a, b) => a.route.localeCompare(b.route))
163
.map((prediction, predictionIndex) => (
0 commit comments