.layout-node-form > .layout-region-node-main.drag-view .draggable > td > div {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.layout-node-form > .layout-region-node-main.drag-view .draggable > td > div::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
  rgba(255, 255, 255, 0),
  rgba(255, 255, 255, 1));
  z-index: 10;
}