Added Support and Analytics for Release

This commit is contained in:
2026-07-10 21:59:35 +10:00
parent d765161b9a
commit 85eeba982f
24 changed files with 673 additions and 320 deletions
+9 -2
View File
@@ -93,6 +93,7 @@ const { data: following, loading: followingLoading } = useApiResource<User[]>('/
@media (max-width: 768px) {
.feed-page {
width: 100%;
padding: 0;
}
}
@@ -152,17 +153,23 @@ const { data: following, loading: followingLoading } = useApiResource<User[]>('/
/* GRID: following sidebar + condensed feed */
.feed-grid {
display: grid;
grid-template-columns: 240px 1fr;
grid-template-columns: 240px minmax(0, 1fr);
gap: 2rem;
align-items: start;
min-width: 0;
}
@media (max-width: 768px) {
.feed-grid {
grid-template-columns: 1fr;
grid-template-columns: minmax(0, 1fr);
}
}
.following-box,
.feed-condensed {
min-width: 0;
}
.following-box {
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 1rem;