Skip to content

Commit

Permalink
Restore button styling
Browse files Browse the repository at this point in the history
  • Loading branch information
herzog31 committed Feb 2, 2024
1 parent c0a366a commit 9366569
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,25 +287,30 @@ button:not([class^='elsie-']) {
box-sizing: border-box;
text-decoration: none;
border: var(--shape-border-width-3) solid transparent;
padding: 5px 3.0rem;
text-align: center;
cursor: pointer;
color: var(--color-neutral-50);
background-color: var(--color-brand-500);
margin: 16px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
border-radius: 30px;
}

a.button:hover,
a.button:focus,
button:not([class^='elsie-']):hover,
button:not([class^='elsie-']):focus {
background-color: var(--color-brand-600);
cursor: pointer;
}

a.button.disabled,
button:not([class^='elsie-']):disabled,
button:not([class^='elsie-']):disabled:hover {
background-color: var(--color-neutral-300);
cursor: unset;
}

Expand Down

0 comments on commit 9366569

Please sign in to comment.