const styles = { card: { width: "100%", height: "100%", display: "flex", flexDirection: "column", padding: 16, boxSizing: "border-box", overflow: "hidden", }, horizontal: { width: "100%", height: "100%", display: "flex", flexDirection: "row", alignItems: "stretch", boxSizing: "border-box", gap: 16, }, printerView: { boxSizing: "border-box", width: "50%", }, statsView: { boxSizing: "border-box", width: "50%", }, }; export default styles;