Monorepo for Tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ogre: center align footer items

set `alignItems: "center"` to footer elements.
reduce `paddingBottom` to `36` for issue & prs cards.

Signed-off-by: eti <eti@eti.tf>

authored by

eti and committed by
Tangled
bca487f7 6ccd22b0

+11 -5
+5 -2
ogre/src/components/cards/issue.tsx
··· 9 9 10 10 export function IssueCard(data: IssueCardData) { 11 11 return ( 12 - <Card style={{ justifyContent: "space-between" }}> 12 + <Card style={{ 13 + justifyContent: "space-between", 14 + paddingBottom: 36, 15 + }}> 13 16 <Col style={{ gap: 48 }}> 14 17 <Col style={{ gap: 32 }}> 15 18 <Row style={{ justifyContent: "space-between" }}> ··· 37 40 38 41 <Row 39 42 style={{ 40 - alignItems: "flex-end", 43 + alignItems: "center", 41 44 justifyContent: "space-between", 42 45 }}> 43 46 <FooterStats
+5 -2
ogre/src/components/cards/pull-request.tsx
··· 87 87 88 88 export function PullRequestCard(data: PullRequestCardData) { 89 89 return ( 90 - <Card style={{ justifyContent: "space-between" }}> 90 + <Card style={{ 91 + justifyContent: "space-between", 92 + paddingBottom: 36, 93 + }}> 91 94 <Col style={{ gap: 48 }}> 92 95 <Col style={{ gap: 32 }}> 93 96 <Row style={{ justifyContent: "space-between" }}> ··· 122 125 123 126 <Row 124 127 style={{ 125 - alignItems: "flex-end", 128 + alignItems: "center", 126 129 justifyContent: "space-between", 127 130 }}> 128 131 <FooterStats
+1 -1
ogre/src/components/cards/repository.tsx
··· 48 48 49 49 <Row 50 50 style={{ 51 - alignItems: "flex-end", 51 + alignItems: "center", 52 52 justifyContent: "space-between", 53 53 flexGrow: 1, 54 54 }}>