Skip to content

Commit 80e3ef5

Browse files
committed
minor fixes
1 parent 6ac998d commit 80e3ef5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/renderer/app/effects.cljs

+2-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
[cb]
9292
(let [el (js/document.createElement "input")]
9393
(set! (.-type el) "file")
94-
(.addEventListener el "change" (fn [e] (.remove el)
94+
(.addEventListener el "change" (fn [e]
95+
(.remove el)
9596
(cb (first (.. e -target -files)))))
9697
(.click el)))
9798

src/renderer/components.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
-webkit-app-region: no-drag;
4545

4646
&:focus {
47-
@apply outline outline-1 outline-offset-1 outline-accent;
47+
@apply outline outline-offset-1 outline-accent;
4848
}
4949

5050
&:hover {

0 commit comments

Comments
 (0)