Buy me a coffee

gradientborder

.sqs-block-button-element--medium.sqs-button-element--primary.sqs-block-button-element {
  position: relative;
  border-radius: 50px; /* Adjust for rounded corners */
  background-clip: padding-box;
}

.sqs-block-button-element--medium.sqs-button-element--primary.sqs-block-button-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #2095E9, #2ACCF8);
  z-index: -1;
  border-radius: 50px; /* Match border radius of the element */
  padding: 2px; /* Width of the gradient border */
  -webkit-mask: linear-gradient(#2095E9 0 0) content-box, linear-gradient(#2ACCF8 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}