@import "./dragula"; div.container { width: 100%; flex-wrap: wrap; margin: 0 auto; display: flex; justify-content: space-between; > div.location { width: 100px; height: 100px; padding: 10px; &.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; } pre { width: 100%; overflow: scroll; }