Skip to content

Instantly share code, notes, and snippets.

@darlanalves
Created June 22, 2023 14:45
Show Gist options
  • Save darlanalves/4a7005dc841d1b23c502e4821fdcfbd0 to your computer and use it in GitHub Desktop.
Save darlanalves/4a7005dc841d1b23c502e4821fdcfbd0 to your computer and use it in GitHub Desktop.
Gradient border color on a box
.border {
position: relative;
background-clip: padding-box;
border: 1px solid transparent;
border-radius: var(--brand-borderRadius-large);
}
.border::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
margin: -1px;
background: linear-gradient(#89898a, #37393d);
border-radius: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment