From 2d1b58d49c99d2cbecc253b655ee583880156f40 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Fri, 13 Feb 2026 17:02:58 -0800 Subject: feat(v2): implement search functionality (NK-shpyxh) --- frontend/src/components/FeedList.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'frontend/src/components/FeedList.css') diff --git a/frontend/src/components/FeedList.css b/frontend/src/components/FeedList.css index 3b854b5..65c9c53 100644 --- a/frontend/src/components/FeedList.css +++ b/frontend/src/components/FeedList.css @@ -4,6 +4,29 @@ background: transparent; } +.search-section { + margin-bottom: 1.5rem; +} + +.search-form { + display: flex; +} + +.search-input { + width: 100%; + padding: 0.5rem; + border: 1px solid #999; + background: #eee; + font-size: 1rem; + font-family: inherit; +} + +.search-input:focus { + outline: none; + background: white; + border-color: #000; +} + .feed-list h2 { font-size: 1.2rem; margin-bottom: 0.5rem; -- cgit v1.2.3