fix(editor): commands list in dark mode
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2023-10-22 19:57:17 +02:00
parent 8d566c9371
commit 2eac17ed57
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 3 deletions

View File

@ -95,11 +95,11 @@ export default {
padding: 0.2rem; padding: 0.2rem;
position: relative; position: relative;
border-radius: 0.5rem; border-radius: 0.5rem;
background: #fff; background: var(--white);
color: rgba(0, 0, 0, 0.8); color: var(--grey-900);
overflow: hidden; overflow: hidden;
font-size: 0.9rem; font-size: 0.9rem;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0px 10px 20px rgba(0, 0, 0, 0.1); box-shadow: var(--shadow-md);
} }
.item { .item {
@ -135,6 +135,7 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
font-size: .9rem; font-size: .9rem;
color: var(--grey-800);
p:last-child { p:last-child {
font-size: .75rem; font-size: .75rem;