Added white inner circle

This commit is contained in:
Daniel Cojocea
2024-08-22 14:21:19 -04:00
parent c23899cbc4
commit 0183e135b7
2 changed files with 14 additions and 3 deletions
+13 -2
View File
@@ -23,8 +23,8 @@ const PulseDot = ({ color }) => {
justifyContent="center"
>
<Box
width="14px"
height="14px"
minWidth="16px"
minHeight="16px"
sx={{
position: "relative",
backgroundColor: color,
@@ -38,6 +38,17 @@ const PulseDot = ({ color }) => {
borderRadius: "50%",
animation: "ripple 1.8s ease-out infinite",
},
"&::after": {
content: `""`,
position: "absolute",
width: "6px",
height: "6px",
borderRadius: "50%",
backgroundColor: "white",
top: "50%",
left: "50%",
transform: "translate(-50%, -50%)",
},
}}
/>
</Stack>
+1 -1
View File
@@ -175,7 +175,7 @@ body .MuiSkeleton-root {
}
to {
opacity: 0;
transform: scale(2.3);
transform: scale(2);
}
}