Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/editors/slate/elements/table/style.ts
1698 views
1
import { FOCUSED_COLOR } from "../../util";
2
3
export default function getStyles(focused: boolean = false) {
4
const border = `1px solid ${focused ? FOCUSED_COLOR : "transparent"}`;
5
return {
6
divStyle: { border, display: "flex", justifyContent: "center" },
7
tableStyle: {
8
borderSpacing: "30px 5px",
9
borderCollapse: "separate",
10
},
11
} as const;
12
}
13
14