feat: supprt log ui
This commit is contained in:
21
src/components/log-item.tsx
Normal file
21
src/components/log-item.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user