initial app

This commit is contained in:
Arnie
2023-06-01 20:24:59 +02:00
parent bb19e15a40
commit 34993f7f61
64 changed files with 10002 additions and 0 deletions
@@ -0,0 +1,14 @@
import styled from "@emotion/styled";
const Caption = styled("caption")(({ theme }) => ({
color: theme.palette.text.secondary,
fontSize: "0.75rem",
lineHeight: 1.5,
margin: 0,
marginBottom: "0.5rem",
display: "block",
textAlign: "unset",
textTransform: "uppercase",
}));
export default Caption;