This commit is contained in:
Markos Gogoulos 2025-10-18 16:53:09 +03:00
parent cd173fc38e
commit 17b8c60450
2 changed files with 8 additions and 8 deletions

View File

@ -196,14 +196,14 @@
top: 16px; top: 16px;
right: 16px; right: 16px;
text-decoration: none; text-decoration: none;
color: #666; color: #fff;
border: 0; border: 0;
line-height: 1; line-height: 1;
padding: 0; padding: 0;
width: 40px; width: 40px;
height: 40px; height: 40px;
border-radius: 50%; border-radius: 50%;
background-color: rgba(0, 0, 0, 0.05); background-color: rgba(40, 167, 69, 0.9);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@ -221,8 +221,8 @@
} }
&:hover { &:hover {
background-color: rgba(0, 0, 0, 0.1); background-color: rgba(40, 167, 69, 1);
color: #333; color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transform: scale(1.05); transform: scale(1.05);
} }
@ -232,11 +232,11 @@
} }
.dark_theme & { .dark_theme & {
background-color: rgba(255, 255, 255, 0.1); background-color: rgba(40, 167, 69, 0.9);
color: #aaa; color: #fff;
&:hover { &:hover {
background-color: rgba(255, 255, 255, 0.15); background-color: rgba(40, 167, 69, 1);
color: #fff; color: #fff;
} }
} }

File diff suppressed because one or more lines are too long