From 4d0705a41039aa1423d03762a1d9753bc774af10 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Tue, 4 Feb 2025 21:41:09 +0000 Subject: [PATCH] Update src/styles/feed.css --- src/styles/feed.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/src/styles/feed.css b/src/styles/feed.css index 0d9c38b..c90f9c5 100644 --- a/src/styles/feed.css +++ b/src/styles/feed.css @@ -143,3 +143,39 @@ color: rgba(255,255,255,0.25); font-weight: 500; } + +.feedPostsPostPreview { + width: 100%; + border-radius: 10px; + padding: 10px; + display: flex; + flex-direction: column; + border: solid 1px rgba(255,255,255,0.1); + align-items: center; +} + +.feedPostsPostPreviewNote { + width: 100%; + max-width: 200px; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + margin: 0 0 10px 0; + background: rgba(255,255,255,0.1); + padding: 5px; + border-radius: 6px; + color: rgba(255,255,255,0.25); +} + +.imgFeedRender { + width: 100%; + border-radius: 10px; + box-shadow: 0 0 8px 0 rgb(0,0,0,0.25); +} + +.videoFeedRender { + width: 100%; + border-radius: 10px; + box-shadow: 0 0 8px 0 rgb(0,0,0,0.25); +}