@import "./dragula"; div.container { margin: 0 auto; display: flex; > div.location { width: 100px; height: 100px; padding: 40px; &.over { > .item { transform: scale(1.3); background: blue; } } } } div.item { transition: all 0.2s; width: 100px !important; height: 100px !important; background: red; border-radius: 300px; display: flex; justify-content: center; align-items: center; }