@@ -57,11 +57,11 @@ export default function ClassificationFeed({ custommaxWidth = '85%' }) {
57
57
< ul
58
58
aria-label = "Nested user feed"
59
59
role = "feed"
60
- className = "relative flex flex-col gap-12 py-12 pl-8 before:absolute before:top-0 before:left-8 before:h-full before:-translate-x-1/2 after:absolute after:top-6 after:left-8 after:bottom-6 after:-translate-x-1/2"
60
+ className = "relative flex flex-col gap-12 py-12 before:absolute before:top-0 before:left-8 before:h-full before:-translate-x-1/2 after:absolute after:top-6 after:left-8 after:bottom-6 after:-translate-x-1/2"
61
61
style = { { maxWidth : custommaxWidth , margin : 'auto' } }
62
62
>
63
63
{ posts . map ( ( post ) => (
64
- < li key = { post . id } role = "article" className = "relative pl-8 " >
64
+ < li key = { post . id } role = "article" className = "relative px-4 " >
65
65
< CardForum { ...post } />
66
66
</ li >
67
67
) ) }
@@ -129,7 +129,7 @@ export function FactionFeed({ custommaxWidth = '85%', factionId }) {
129
129
style = { { maxWidth : custommaxWidth , margin : 'auto' } }
130
130
>
131
131
{ posts . map ( ( post ) => (
132
- < li key = { post . id } role = "article" className = "relative pl-8 " >
132
+ < li key = { post . id } role = "article" className = "relative" >
133
133
< RoverContentCard { ...post } />
134
134
</ li >
135
135
) ) }
@@ -180,11 +180,11 @@ export function MultiClassificationFeed({ custommaxWidth = '85%' }) {
180
180
< ul
181
181
aria-label = "Nested user feed"
182
182
role = "feed"
183
- className = "relative flex flex-col gap-12 py-12 pl-8 before:absolute before:top-0 before:left-8 before:h-full before:-translate-x-1/2 after:absolute after:top-6 after:left-8 after:bottom-6 after:-translate-x-1/2"
183
+ className = "relative flex flex-col gap-12 py-12 before:absolute before:top-0 before:left-8 before:h-full before:-translate-x-1/2 after:absolute after:top-6 after:left-8 after:bottom-6 after:-translate-x-1/2"
184
184
style = { { maxWidth : custommaxWidth , margin : 'auto' } }
185
185
>
186
186
{ posts . map ( ( post ) => (
187
- < li key = { post . id } role = "article" className = "relative pl-8 " >
187
+ < li key = { post . id } role = "article" className = "relative" >
188
188
< CardForum { ...post } />
189
189
</ li >
190
190
) ) }
0 commit comments