.EditWrapper {
  position: relative;
}

.EditWrapper__Overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.EditWrapper__Overlay:hover {
  opacity: 1;
}
