diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:02:58 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:02:58 -0800 |
| commit | 2d1b58d49c99d2cbecc253b655ee583880156f40 (patch) | |
| tree | 88a4c2a33bc950cd6ac744785afc8d1f570d2ddf /frontend/src/components/FeedList.css | |
| parent | 9bea34af348e5ffb614769cd9020b3692b281823 (diff) | |
| download | neko-2d1b58d49c99d2cbecc253b655ee583880156f40.tar.gz neko-2d1b58d49c99d2cbecc253b655ee583880156f40.tar.bz2 neko-2d1b58d49c99d2cbecc253b655ee583880156f40.zip | |
feat(v2): implement search functionality (NK-shpyxh)
Diffstat (limited to 'frontend/src/components/FeedList.css')
| -rw-r--r-- | frontend/src/components/FeedList.css | 23 |
1 files changed, 23 insertions, 0 deletions
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; |
