Skip to content

Commit

Permalink
fix: lower opacity of DropZone background to support dark backgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Mar 22, 2024
1 parent 1d0bf57 commit 9a5c0b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/components/DropZone/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
.DropZone--hoveringOverArea:not(.DropZone--isDisabled):not(
.DropZone--isRootZone
) {
background: var(--puck-color-azure-11);
background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
outline: 2px dashed var(--puck-color-azure-08);
}

.DropZone:not(.DropZone--hasChildren) {
background: var(--puck-color-azure-11);
background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
outline: 2px dashed var(--puck-color-azure-08);
}

Expand Down

0 comments on commit 9a5c0b8

Please sign in to comment.