mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
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",
|
||
|
|
},
|
||
|
|
}
|