Add VA token copy button to extension

This commit is contained in:
2026-07-05 01:11:18 +00:00
parent 64f162440f
commit a80074ac57
4 changed files with 79 additions and 25 deletions
+24 -3
View File
@@ -44,7 +44,13 @@ h1 {
border-color: #F44336;
}
.send-btn {
.action-buttons {
display: grid;
gap: 8px;
}
.primary-btn,
.secondary-btn {
display: block;
width: 100%;
padding: 10px 16px;
@@ -59,11 +65,26 @@ h1 {
transition: background 0.2s ease;
}
.send-btn:hover:not(:disabled) {
.primary-btn {
background: #0E7AFE;
}
.secondary-btn {
background: #2D2D30;
border: 1px solid #0E7AFE;
color: #E0E0E0;
}
.primary-btn:hover:not(:disabled) {
background: #0A5FD9;
}
.send-btn:disabled {
.secondary-btn:hover:not(:disabled) {
background: #0E7AFE;
}
.primary-btn:disabled,
.secondary-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}