contacts_popover.ts

 1import { ColorScheme } from "../theme/color_scheme"
 2import { background, border } from "./components"
 3
 4export default function contacts_popover(theme: ColorScheme): any {
 5    return {
 6        background: background(theme.middle),
 7        corner_radius: 6,
 8        padding: { top: 6, bottom: 6 },
 9        shadow: theme.popover_shadow,
10        border: border(theme.middle),
11        width: 300,
12        height: 400,
13    }
14}