mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-17 14:49:24 +08:00
27 lines
596 B
TypeScript
27 lines
596 B
TypeScript
import React from "react";
|
|
const styles: { [key: string]: React.CSSProperties } = {
|
|
background: {
|
|
backgroundColor: "#0b2322",
|
|
height: "100vh",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
fontWeight: "bold",
|
|
color: "white",
|
|
},
|
|
flex_row: {
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
header: {
|
|
display: "flex",
|
|
flexDirection: "row",
|
|
position: "sticky",
|
|
top: 0,
|
|
left: 0,
|
|
},
|
|
};
|
|
export default styles;
|