Skip to content

Commit

Permalink
add cata button styles
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jul 30, 2024
1 parent 948624a commit a4e75a5
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion ui/scss/shared/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,31 @@ body {
}
}

a {
button {
display: inline-block;
border: 0;
background-color: transparent;
padding: 0;
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
text-decoration: none;
outline: none;
width: auto;
text-align: inherit;
font-weight: inherit;
transition: $btn-transition;

&:hover {
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
}

a,
button[class*='btn-link'] {
cursor: pointer;
border: 0;
padding: 0;
outline: none;
background-color: transparent;
transition: color 0.15s ease-in-out;

&.link-alt {
Expand Down

0 comments on commit a4e75a5

Please sign in to comment.