fediverse.space/frontend/src/constants.tsx

11 wiersze
314 B
TypeScript
Czysty Zwykły widok Historia

2018-09-04 20:56:49 +00:00
/* Screen widths less than this will be treated as mobile */
export const DESKTOP_WIDTH_THRESHOLD = 800;
2019-07-14 11:47:06 +00:00
export const DEFAULT_NODE_COLOR = "#CED9E0";
export const SELECTED_NODE_COLOR = "#48AFF0";
export const INSTANCE_DOMAIN_PATH = "/instance/:domain";
export interface IInstanceDomainPath {
domain: string;
}