mirror of
https://github.com/lemeow125/Ivy-Frontend.git
synced 2024-11-17 14:49:24 +08:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
|
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;
|