copy button

This commit is contained in:
Cory LaViska
2023-09-05 14:53:49 -04:00
parent b86a6a54ab
commit 631df0293c
2 changed files with 12 additions and 12 deletions

View File

@@ -193,19 +193,19 @@ You can customize the button to your liking with CSS.
.custom-styles::part(button) {
background-color: #ff1493;
border: solid 4px #ff7ac1;
border: solid 2px #ff7ac1;
border-right-color: #ad005c;
border-bottom-color: #ad005c;
border-radius: 0;
transition: 100ms scale ease-in-out, 100ms translate ease-in-out;
border-radius: 6px;
transition: var(--wa-transition-normal) all;
}
.custom-styles::part(button):hover {
scale: 1.1;
transform: scale(1.05);
}
.custom-styles::part(button):active {
translate: 0 2px;
transform: translateY(1px);
}
.custom-styles::part(button):focus-visible {