Skip to content

Commit

Permalink
chore(list): clean up linting and documentation exception
Browse files Browse the repository at this point in the history
  • Loading branch information
philschanely committed Aug 17, 2022
1 parent 292da09 commit 8981b7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/sage-assets/lib/stylesheets/components/_list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
.sage-list__item--sortable-drag {
background-color: sage-color(white);
box-shadow: sage-shadow(lg);
opacity: 1 !important;
// NOTE: !important is added and lint-ignored here so that it can override
// inline opacity that the SortableJS utility we're using adds during sorting.
opacity: 1 !important; /* stylelint-disable-line declaration-no-important */
}

.sage-list__item--sortable-ghost {
Expand Down

0 comments on commit 8981b7a

Please sign in to comment.