forked from Archives/Athou_commafeed
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
|
|
import { DEFAULT_THEME } from "@mantine/core"
|
||
|
|
|
||
|
|
export const Constants = {
|
||
|
|
categoryIds: {
|
||
|
|
all: "all",
|
||
|
|
},
|
||
|
|
layout: {
|
||
|
|
mobileBreakpoint: DEFAULT_THEME.breakpoints.md,
|
||
|
|
headerHeight: 60,
|
||
|
|
sidebarWidth: 350,
|
||
|
|
},
|
||
|
|
dom: {
|
||
|
|
mainScrollAreaId: "main-scroll-area-id",
|
||
|
|
},
|
||
|
|
}
|