Skip to content

Commit

Permalink
fix: #1058 (update);
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Feb 18, 2023
1 parent c0a3246 commit 89aa36a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,8 @@ COMPONENT JS (w/ TS)
* @returns {void}
*/
function clear_event_listeners(): void {
document.documentElement.classList.remove('no-touch');
document.body.classList.remove('no-touch');
let imageCropBox: HTMLElement = document.getElementById('profile-cricle-img-crop');
let resize_elemnts: HTMLCollectionOf<Element> = document.getElementsByClassName('resize-dot')
imageCropBox.removeEventListener('touchstart', mousedown_event, true);
Expand Down Expand Up @@ -640,7 +642,8 @@ COMPONENT STYLE
z-index: 0;
/* style */
height: inherit;
width: auto;
width: 100%;
/* width: auto; */
/* object-fit: cover; */
background-color: var(--white);
mask-image: radial-gradient(
Expand Down

0 comments on commit 89aa36a

Please sign in to comment.