Skip to content

Commit

Permalink
docs(Drag&Drop demo): background color contrast
Browse files Browse the repository at this point in the history
Increase background color contrast of drag&drop area during
drag-over. Otherwise, it's hard to see when the site is in dark mode.
  • Loading branch information
gruhn committed Jul 20, 2023
1 parent a8d5da0 commit 493d4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/components/demos/DragDrop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ export default {
font-weight: bold;
padding: 10px;
background-color: rgba(0, 0, 0, 0.5);
background-color: #3c3c43;
}
.dragover {
background-color: rgba(0, 0, 0, 0.8);
background-color: #10b981;
}
.drop-error {
Expand Down

0 comments on commit 493d4ba

Please sign in to comment.