Ivy-Frontend/src/styles.tsx

28 lines
596 B
TypeScript
Raw Normal View History

2023-02-13 22:49:32 +08:00
import React from "react";
2023-02-13 23:54:15 +08:00
const styles: { [key: string]: React.CSSProperties } = {
2023-02-13 22:49:32 +08:00
background: {
backgroundColor: "#0b2322",
height: "100vh",
display: "flex",
2023-02-13 23:54:15 +08:00
flexDirection: "column",
2023-02-13 22:49:32 +08:00
justifyContent: "center",
alignItems: "center",
fontWeight: "bold",
color: "white",
2023-02-13 23:54:15 +08:00
},
flex_row: {
display: "flex",
flexDirection: "row",
justifyContent: "center",
alignItems: "center",
},
header: {
display: "flex",
flexDirection: "row",
position: "sticky",
top: 0,
left: 0,
},
2023-02-13 22:49:32 +08:00
};
export default styles;