fix(desktop): improve edit button visibility and dark theme styles
This commit is contained in:
parent
f4b120ec25
commit
084caa8932
1 changed files with 12 additions and 1 deletions
|
|
@ -446,9 +446,20 @@
|
|||
bottom: 4%;
|
||||
right: 4%;
|
||||
z-index: 100;
|
||||
opacity: 0.1;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.desktop-edit:hover{
|
||||
opacity: 1;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .desktop-edit{
|
||||
background-color: var(--surface-gray-3);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[data-theme="dark"] .desktop-edit:hover{
|
||||
opacity: 0.8;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue