Add input styles for prompt-item and folder-item

This commit is contained in:
2026-01-31 19:10:36 +01:00
parent cd512e8456
commit 00613f60d5

View File

@@ -228,6 +228,16 @@ body {
flex: 1;
}
.prompt-item__input {
width: 100%;
font: inherit;
color: var(--ink);
background: var(--bg-input);
border: 1px solid var(--border);
border-radius: 10px;
padding: 6px 10px;
}
.prompt-item__delete {
width: 34px;
height: 34px;
@@ -313,6 +323,16 @@ body {
word-break: break-word;
}
.folder-item__input {
width: 100%;
font: inherit;
color: var(--ink);
background: var(--bg-input);
border: 1px solid var(--border);
border-radius: 10px;
padding: 6px 10px;
}
.folder-children {
display: flex;
flex-direction: column;