Skip to content

Commit

Permalink
style: add button-link border color
Browse files Browse the repository at this point in the history
  • Loading branch information
sounmind committed Jul 14, 2024
1 parent 43225e2 commit 1e444a2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion components/button-link.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,17 @@ class ButtonLink extends HTMLElement {
color: black;
font-weight: normal;
border-radius: 10px;
border: 2px solid black;
background: white;
border: 3px solid transparent;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
background-image: linear-gradient(white, white),
linear-gradient(135deg, var(--secondary), var(--primary));
@media only screen and (min-width: 768px) {
border-width: 5px;
}
}
}
@media only screen and (min-width: 768px) {
Expand Down

0 comments on commit 1e444a2

Please sign in to comment.