diff --git a/src/stories/DragAndDropFileInput.module.scss b/src/stories/DragAndDropFileInput.module.scss index 44bd5c7e..320dc294 100644 --- a/src/stories/DragAndDropFileInput.module.scss +++ b/src/stories/DragAndDropFileInput.module.scss @@ -11,11 +11,12 @@ .dragAndDropContainer { @include transition(all 0.1s ease-in-out); - border: 2px dashed #ccc; + border: 2px dashed $color-secondary-light; border-radius: 20px; width: 100%; padding: 20px; text-align: center; + background-color: #fff; input { display: none; @@ -26,7 +27,7 @@ } &.highlighted { - background: $color-default-background; + background: $color-secondary-x-light; border-color: $color-primary; } }