import { CSS } from "@cocalc/frontend/app-framework";
export const NARROW_THRESHOLD_PX = 550;
export const HIDE_LABEL_THRESHOLD = 6;
export const NAV_HEIGHT_PX = 36;
export const NAV_HEIGHT_NARROW_PX = 28;
export const NAV_CLASS = "hidden-xs";
export const FONT_SIZE_ICONS_NARROW = "14px";
export const FONT_SIZE_ICONS_NORMAL = "20px";
export const TOP_BAR_ELEMENT_CLASS = "cocalc-top-bar-element";
export interface PageStyle {
topBarStyle: CSS;
fileUseStyle: CSS;
projectsNavStyle: CSS | undefined;
fontSizeIcons: string;
topPaddingIcons: string;
sidePaddingIcons: string;
isNarrow: boolean;
height: number;
}