Browse Source

fix: sync button color

Tienson Qin 3 years ago
parent
commit
150f50ef5b
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/main/frontend/components/file_sync.cljs

+ 4 - 3
src/main/frontend/components/file_sync.cljs

@@ -191,9 +191,10 @@
 (rum/defc sync-now
   []
   (ui/button "Sync now"
-             :class "block cursor-pointer"
-             :small? true
-             :on-click #(async/offer! fs-sync/immediately-local->remote-chan true)))
+    :class "block cursor-pointer"
+    :small? true
+    :on-click #(async/offer! fs-sync/immediately-local->remote-chan true)
+    :style {:color "#ffffff"}))
 
 (def *last-calculated-time (atom nil))