File tree 6 files changed +7
-10
lines changed
6 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 27
27
}
28
28
29
29
.dot {
30
+ fill : currentColor ;
30
31
animation : bounce 0.5s ease-in-out infinite ;
31
32
}
32
33
</style >
Original file line number Diff line number Diff line change 14
14
}
15
15
16
16
function onDragOver(event : DragEvent ) {
17
- event .preventDefault ();
18
-
19
17
if (event .dataTransfer ) {
20
18
event .dataTransfer .dropEffect = ' copy' ;
21
19
}
22
20
}
23
21
24
22
function onDrop(event : DragEvent ) {
25
- event .preventDefault ();
26
23
const file = event .dataTransfer ?.files .item (0 );
27
24
28
25
if (file ) {
34
31
<label
35
32
title ={t (' components.image-picker' )}
36
33
class =" image-picker"
37
- on:dragover ={onDragOver }
38
- on:drop ={onDrop }
34
+ on:dragover | preventDefault ={onDragOver }
35
+ on:drop | preventDefault ={onDrop }
39
36
>
40
37
<input
41
38
type =" file"
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ $height-regular: 480px;
4
4
$height-expanded : 720px ;
5
5
6
6
:root {
7
- --color-separator : gray ;
8
7
--color-border : gray ;
9
8
--color-accent : #ff8243 ;
10
9
--color-on-accent : black ;
Original file line number Diff line number Diff line change 25
25
padding-right : 1em ;
26
26
padding-top : max (1em , env (safe-area-inset-top ));
27
27
padding-bottom : max (1em , env (safe-area-inset-bottom ));
28
- border-inline-end : 2px solid var (--color-separator );
28
+ border-inline-end : 2px solid var (--color-border );
29
29
30
30
@include regular {
31
31
display : flex ;
41
41
margin-bottom : env (safe-area-inset-bottom );
42
42
padding-left : env (safe-area-inset-left );
43
43
padding-right : env (safe-area-inset-right );
44
- border-top : 2px solid var (--color-separator );
44
+ border-top : 2px solid var (--color-border );
45
45
46
46
@include regular {
47
47
display : none ;
Original file line number Diff line number Diff line change 40
40
z-index : -1 ;
41
41
width : 100% ;
42
42
height : 100% ;
43
- border : 2px solid var (--color-separator );
43
+ border : 2px solid var (--color-border );
44
44
border-radius : 2em ;
45
45
box-sizing : border-box ;
46
46
}
Original file line number Diff line number Diff line change 58
58
padding-right : max (1em , env (safe-area-inset-right ));
59
59
box-sizing : border-box ;
60
60
align-items : center ;
61
- border-bottom : 2px solid var (--color-separator );
61
+ border-bottom : 2px solid var (--color-border );
62
62
transition : 0.3s ;
63
63
64
64
@include expanded {
You can’t perform that action at this time.
0 commit comments