mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
af9b16e93d
Co-authored-by: LB Johnston <mail@lb.ee>
18 lines
294 B
SCSS
18 lines
294 B
SCSS
// file drop zones
|
|
.drop-zone {
|
|
border-radius: 5px;
|
|
border: 2px dashed $color-grey-4;
|
|
padding: $mobile-nice-padding;
|
|
background-color: $color-grey-5;
|
|
margin-bottom: 1em;
|
|
text-align: center;
|
|
|
|
.drop-zone-help {
|
|
border: 0;
|
|
}
|
|
|
|
&.hovered {
|
|
border-color: $color-teal;
|
|
}
|
|
}
|