Skip to content

Commit

Permalink
update color on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuujin committed Apr 30, 2024
1 parent 51294ad commit 6b25e82
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/ui/components/forms/SubmitButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const handleClick = () => {
flex-direction: row;
justify-content: center;
align-items: center;
background-color: #42b883;
color: #fff;
background-color: var(--color-vue-green200);
color: var(--color-white);
width: 100%;
padding: 22px 66px;
border-radius: 40px;
Expand All @@ -44,6 +44,12 @@ const handleClick = () => {
box-shadow: var(--box-shadow-button);
}
.submit-button:hover {
background-color: var(--color-white);
color: var(--color-vue-green200);
border: 2px solid var(--color-vue-green200);
}
.submit-button:disabled {
pointer-events: none;
background-color: #C6CACF !important;
Expand Down

0 comments on commit 6b25e82

Please sign in to comment.