Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
justinh-rahb authored Nov 14, 2024
1 parent 1d249b6 commit 0235573
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ header h1 {
border-radius: 50%;
background-color: var(--realtime-indicator);
position: absolute;
top: 0; /* Position in the top-right corner */
right: 0;
top: 8px;
right: 8px;
}

.status-indicator.realtime {
Expand Down
4 changes: 3 additions & 1 deletion templates/bus_times.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% if error %}
<div class="error">{{ error }}</div>
{% elif buses %}
<h2>Upcoming Buses at {{ stop_name }}</h2>
<div class="bus-times-header">
<h2>Upcoming Buses at {{ stop_name }}</h2>
</div>
<ul>
{% for bus in buses %}
<li class="bus-item">
Expand Down

0 comments on commit 0235573

Please sign in to comment.