From 00613f60d5ac61c886e45b6f6542d60f0c25a642 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 31 Jan 2026 19:10:36 +0100 Subject: [PATCH] Add input styles for prompt-item and folder-item --- src/index.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/index.css b/src/index.css index 0d98622..4319809 100644 --- a/src/index.css +++ b/src/index.css @@ -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;