From 2c1919117d7249f0ff95d6a89dab76f2949c430f Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 26 Mar 2020 15:23:27 +0100 Subject: [PATCH] :lipstick: Fix indentation on workspace header. --- .../src/uxbox/main/ui/workspace/header.cljs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/src/uxbox/main/ui/workspace/header.cljs b/frontend/src/uxbox/main/ui/workspace/header.cljs index dc8f7de14b..768d1c4d77 100644 --- a/frontend/src/uxbox/main/ui/workspace/header.cljs +++ b/frontend/src/uxbox/main/ui/workspace/header.cljs @@ -45,16 +45,16 @@ [:& dropdown {:show @show-dropdown? :on-close #(reset! show-dropdown? false)} [:ul.zoom-dropdown - [:li {:on-click increase} - "Zoom in" [:span "+"]] - [:li {:on-click decrease} - "Zoom out" [:span "-"]] - [:li {:on-click zoom-to-50} - "Zoom to 50%"] - [:li {:on-click zoom-to-100} - "Zoom to 100%" [:span "Shift + 0"]] - [:li {:on-click zoom-to-200} - "Zoom to 200%"]]]] + [:li {:on-click increase} + "Zoom in" [:span "+"]] + [:li {:on-click decrease} + "Zoom out" [:span "-"]] + [:li {:on-click zoom-to-50} + "Zoom to 50%"] + [:li {:on-click zoom-to-100} + "Zoom to 100%" [:span "Shift + 0"]] + [:li {:on-click zoom-to-200} + "Zoom to 200%"]]]] [:span.remove-zoom {:on-click increase} "+"]])) ;; --- Header Users