Change add dictionary button color to white (v2.8.4)
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 24s

This commit is contained in:
Play Life Bot
2026-01-02 18:24:39 +03:00
parent 3bdad682b3
commit bacb605a0c
2 changed files with 7 additions and 7 deletions

View File

@@ -317,7 +317,7 @@
.add-dictionary-button {
background: transparent;
border: 2px dashed #2c3e50;
border: 2px dashed white;
border-radius: 12px;
padding: 1.5rem 1rem;
transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
@@ -332,16 +332,16 @@
.add-dictionary-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
background-color: rgba(44, 62, 80, 0.05);
border-color: #1a252f;
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.05);
border-color: white;
}
.add-dictionary-button .add-config-icon {
color: #000000;
color: white;
}
.add-dictionary-button .add-config-text {
color: #000000;
color: white;
}