Skip to content

Commit

Permalink
fix time padding
Browse files Browse the repository at this point in the history
  • Loading branch information
sprocketc committed Mar 16, 2024
1 parent ee65180 commit e177161
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/renderer/timeline/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,11 @@
[:> Select/Viewport {:class "select-viewport"}
[:> Select/Group
(for [{:keys [id value label]} speed-options]
^{:key id} [:> Select/Item
{:value value
:class "menu-item select-item"}
[:> Select/ItemText label]])]]
^{:key id}
[:> Select/Item
{:value value
:class "menu-item select-item"}
[:> Select/ItemText label]])]]
[:> Select/ScrollDownButton
{:class "select-scroll-button"}
[comp/icon "chevron-down"]]]]]]))
Expand Down Expand Up @@ -105,7 +106,7 @@
:icon "refresh"
:action #(rf/dispatch [:timeline/toggle-replay])}]
[speed-select timeline-ref]
[:span.font-mono time-formatted]
[:span.font-mono.px-2 time-formatted]
(when timeline?
[:div.snap-controls.flex
[:span.v-divider]
Expand Down

0 comments on commit e177161

Please sign in to comment.