diff options
Diffstat (limited to 'index.html.erb')
-rw-r--r-- | index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html.erb b/index.html.erb index 62f31d2..2949dc8 100644 --- a/index.html.erb +++ b/index.html.erb @@ -36,7 +36,7 @@ <h3>Kl.</h3> <div class="time-column-inner"> <% (start_time..end_time).step(3600 / 4) do |time| %> - <div class="timestamp" style="top: <%= (time - start_time).to_i / 50 - 5 %>px; height: 10px;"> + <div class="timestamp" style="top: <%= (time - start_time).to_i / 50 %>px; height: 10px;"> <%= Time.at(time).strftime('%H:%M') %> </div> <% end %> |