27 lines
477 B
SCSS
27 lines
477 B
SCSS
.droppable {
|
|
|
|
.inventory-table {
|
|
position: relative;
|
|
}
|
|
|
|
.inventory-table::after {
|
|
|
|
content: 'Gegenstände hier fallen lassen';
|
|
pointer-events: none;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
border-radius: 8px;
|
|
border-style: dashed;
|
|
border-color: gray;
|
|
line-height: 34px;
|
|
height: 34px;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
color: gray;
|
|
}
|
|
|
|
} |