
notecss
A gradient border image, transparent at the edges, looks like it thins out as it fades out.
.effect {
  border-image: 
    linear-gradient(
      transparent, 
      var(--indigo-6), 
      transparent
    ) 
    1 / 4px /* slice n' size */
  ;
}

