aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedItems.css
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-13 11:45:02 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-13 11:45:02 -0800
commitf8fcc0be57fa7f471ffd22d4b9559cb6d0ff20bf (patch)
treeca2d51b24b0908e1c857618f114ce6fa5593041f /frontend/src/components/FeedItems.css
parentfc2bc854f4e3bae3503d5000f1fbc414bfa7e0cc (diff)
downloadneko-f8fcc0be57fa7f471ffd22d4b9559cb6d0ff20bf.tar.gz
neko-f8fcc0be57fa7f471ffd22d4b9559cb6d0ff20bf.tar.bz2
neko-f8fcc0be57fa7f471ffd22d4b9559cb6d0ff20bf.zip
Implement infinite scroll for feed items view (NK-5ocxgm)
Diffstat (limited to 'frontend/src/components/FeedItems.css')
-rw-r--r--frontend/src/components/FeedItems.css12
1 files changed, 11 insertions, 1 deletions
diff --git a/frontend/src/components/FeedItems.css b/frontend/src/components/FeedItems.css
index f271b34..54c882a 100644
--- a/frontend/src/components/FeedItems.css
+++ b/frontend/src/components/FeedItems.css
@@ -12,10 +12,20 @@
list-style: none;
padding: 0;
}
+
.selected-item-container {
border-left: 4px solid #007bff;
background-color: #f8f9fa;
padding-left: 0.5rem;
- margin-left: -0.5rem; /* Compensate for padding/border to keep alignment */
+ margin-left: -0.5rem;
+ /* Compensate for padding/border to keep alignment */
transition: background-color 0.2s;
}
+
+.loading-more {
+ padding: 2rem;
+ text-align: center;
+ color: #888;
+ font-size: 0.9rem;
+ min-height: 50px;
+} \ No newline at end of file