Commit 9e26efd 1 parent dcc1508 commit 9e26efd Copy full SHA for 9e26efd
File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 79
79
80
80
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sections */
81
81
82
+ @import ' vendor/cropperjs' ;
82
83
@import ' vendor/flatpickr' ;
83
84
@import ' vendor/vselect' ;
84
85
Original file line number Diff line number Diff line change
1
+ /* make hit area for cropping points larger to help touch users crop images */
2
+
3
+ .cropper-crop-box {
4
+ container-type : inline-size ;
5
+ container-name : cropbox;
6
+ }
7
+
8
+ .cropper-point ::after {
9
+ content : ' ' ;
10
+ position : absolute ;
11
+ inset : -2px ;
12
+ }
13
+
14
+ @container cropbox (min-width: 40px) {
15
+ .cropper-point ::after {
16
+ inset : -5px ;
17
+ }
18
+ }
19
+
20
+ @container cropbox (min-width: 60px) {
21
+ .cropper-point ::after {
22
+ inset : -10px ;
23
+ }
24
+ }
25
+
26
+ @container cropbox (min-width: 100px) {
27
+ .cropper-point ::after {
28
+ inset : -20px ;
29
+ }
30
+ }
You can’t perform that action at this time.
0 commit comments