feat: supprt log ui

This commit is contained in:
GyDi
2021-12-22 02:08:44 +08:00
parent 38e55be7aa
commit 1a51062aa1
2 changed files with 74 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
import { styled, Box } from "@mui/material";
const LogItem = styled(Box)(({ theme }) => ({
padding: "8px 0",
margin: "0 12px",
lineHeight: 1.35,
borderBottom: `1px solid ${theme.palette.divider}`,
"& .time": {},
"& .type": {
display: "inline-block",
width: 50,
margin: "0 4px",
textAlign: "center",
borderRadius: 2,
textTransform: "uppercase",
fontWeight: "600",
},
"& .data": {},
}));
export default LogItem;