Skip to content

Commit

Permalink
Merge pull request #60 from smswithoutborders/develop
Browse files Browse the repository at this point in the history
update to card for bridges
  • Loading branch information
mildrette authored Jan 23, 2025
2 parents 8b7b78d + baf61e3 commit 92efd4d
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion src/Pages/OpenTelemetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ const OpenTelemetry = () => {
</Card>
</Grid>

<Grid item xs={12} sm={6} md={4} lg={3}>
{/* <Grid item xs={12} sm={6} md={4} lg={3}>
<Card
sx={{
p: 2,
Expand Down Expand Up @@ -421,6 +421,35 @@ const OpenTelemetry = () => {
<strong>Keep track of your content publishing progress</strong>
</Typography>
</Card>
</Grid> */}
<Grid item xs={12} sm={6} md={4} lg={3}>
<Card
sx={{
p: 2,
textAlign: "center",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
height: "100%",
boxShadow: 8,
borderRadius: "15px",
background: "linear-gradient(135deg, rgb(70, 67, 71), rgb(106, 98, 109))",
color: "white",
transform: "scale(1.1)",
transition: "transform 0.3s ease-in-out",
"&:hover": {
transform: "scale(1.15)"
}
}}
>
<Typography variant="h6" sx={{ mb: 2, fontWeight: "bold" }}>
Bridge users
</Typography>
<Typography variant="h4" sx={{ fontWeight: "700", mb: 1 }}>
{total_signups_from_bridges}
</Typography>
</Card>
</Grid>
</>
)}
Expand Down

0 comments on commit 92efd4d

Please sign in to comment.