Skip to content

Commit

Permalink
chore: re-order mixed decl, fix #331
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jul 17, 2024
1 parent 48689b5 commit 14ec1b6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/client/client/components/common/k-button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ function onClick(event: MouseEvent) {
padding: 0.4em 1em;
transition: var(--color-transition);
display: inline-block;
// default: transparent & framed
color: var(--el-button-text-color);
border: 1px solid var(--k-color-border);
background-color: transparent;
&.round {
border-radius: 50%;
}
Expand All @@ -66,10 +72,6 @@ function onClick(event: MouseEvent) {
cursor: default;
}
// default: transparent & framed
color: var(--el-button-text-color);
border: 1px solid var(--k-color-border);
background-color: transparent;
&.disabled {
color: var(--k-color-disabled);
border-color: var(--k-color-border);
Expand Down

0 comments on commit 14ec1b6

Please sign in to comment.