Beta 1 gradients - delete gradient point not working

Hi @charlie

I have created a three point gradient but clicking the - button does nothing?

Also finding transitions from one colour to another to be a bit harsh?

would it be possible to be able to paste in straight css gradients as well as the json?
ie linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);

1 Like

I’ll have a fix for removing a color in a global gradient in the next beta.

From what I could tell transitioning from two different gradients wasn’t support by CSS. You can kind of get around this by changing the background position.

$el:hover {
  background-position: 5px;
  transition: background 1s ease;
}

I can look at being able to copy CSS gradients in our paste button.

Thanks for the feedback!