fix: link button style (#36)

This commit is contained in:
luoxiaozero 2023-12-04 17:03:33 +08:00 committed by GitHub
parent a0e87f18f0
commit d0133191ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,12 +20,12 @@
transition: all 0.3s; transition: all 0.3s;
} }
.thaw-button--disabled:not(.thaw-button--text) { .thaw-button--disabled:not(.thaw-button--text, .thaw-button--link) {
border-color: var(--thaw-border-color-disabled); border-color: var(--thaw-border-color-disabled);
background-color: var(--thaw-background-color-disabled); background-color: var(--thaw-background-color-disabled);
} }
.thaw-button--disabled { .thaw-button.thaw-button--disabled {
color: var(--thaw-font-color-disabled); color: var(--thaw-font-color-disabled);
cursor: not-allowed; cursor: not-allowed;
} }
@ -46,6 +46,8 @@
} }
.thaw-button--link { .thaw-button--link {
background-color: transparent;
color: inherit;
height: auto; height: auto;
padding: inherit; padding: inherit;
} }