We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
:host
1 parent 88d7e8f commit 4b90068Copy full SHA for 4b90068
src/index.ts
@@ -210,10 +210,10 @@ class ImageCropElement extends HTMLElement {
210
touch-action: none;
211
display: block;
212
}
213
- .nesw { cursor: nesw-resize; }
214
- .nwse { cursor: nwse-resize; }
215
- .nesw .crop-box,
216
- .nwse .crop-box {
+ :host(.nesw) { cursor: nesw-resize; }
+ :host(.nwse) { cursor: nwse-resize; }
+ :host(.nesw) .crop-box,
+ :host(.nwse) .crop-box {
217
cursor: inherit;
218
219
:host([loaded]) .crop-image { display: block; }
0 commit comments