Skip to content

Commit 36325d8

Browse files
committed
eliminate small icons
1 parent 108a46f commit 36325d8

File tree

17 files changed

+21
-30
lines changed

17 files changed

+21
-30
lines changed
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

resources/public/icons/minus.svg

Lines changed: 1 addition & 1 deletion
Loading

resources/public/icons/plus.svg

Lines changed: 1 addition & 1 deletion
Loading

resources/public/icons/times.svg

Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 3 additions & 0 deletions
Loading

src/renderer/attribute/d.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
"(Relative)" "(Absolute)")]
119119
[:button.icon-button.small.bg-transparent.text-muted
120120
{:on-click #(remove-segment-by-index path i)}
121-
[comp/icon "times" {:class "icon small"}]]]
121+
[comp/icon "times"]]]
122122
[segment-form segment i]])) segments)]))
123123

124124
(defmethod hierarchy/form-element :d

src/renderer/attribute/length.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444
[:button.button.ml-px.bg-primary.text-muted.h-full
4545
{:style {:width "26px"}
4646
:on-pointer-down #(rf/dispatch [::element.e/update-attr k - 1])}
47-
[comp/icon "minus" {:class "icon small"}]]
47+
[comp/icon "minus"]]
4848
[:button.button.ml-px.bg-primary.text-muted.h-full
4949
{:style {:width "26px"}
5050
:on-click #(rf/dispatch [::element.e/update-attr k + 1])}
51-
[comp/icon "plus" {:class "icon small"}]]]])
51+
[comp/icon "plus"]]]])
5252

5353
(defmethod hierarchy/update-attr ::length
5454
[element attribute f & more]

0 commit comments

Comments
 (0)