Ivy-Frontend/src/styles.tsx

14 lines
301 B
TypeScript
Raw Normal View History

2023-02-13 22:49:32 +08:00
import React from "react";
const styles = {
background: {
backgroundColor: "#0b2322",
height: "100vh",
display: "flex",
justifyContent: "center",
alignItems: "center",
fontWeight: "bold",
color: "white",
} as React.CSSProperties,
};
export default styles;