Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Jan 21, 2025
1 parent 55e36c1 commit 628eb78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/js/sortable-drag-drop.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function registerSortableDragDrop(e) {
onEnd: function () {
document.removeEventListener("pointermove", onPointerMove);
if (currentItem) {
currentItem.style.rotate = ""; // Reset rotation
currentItem.style.rotate = "";
currentItem = null;
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/main/scss/form/_reorderable-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ $exit-animation: 0.2s;
.repeated-chunk--sortable-chosen {
width: 100%;
height: 100px;
box-shadow: 0 15px 30px rgba(0, 0, 20, 0.05);
box-shadow: 0 15px 30px rgb(0 0 20 / 0.05);
opacity: 1 !important;
backdrop-filter: blur(20px);
border-radius: var(--form-input-border-radius) !important;
Expand Down

0 comments on commit 628eb78

Please sign in to comment.