UNPKG

wix-style-react

Version:
30 lines (26 loc) 767 B
import { CATEGORY } from '../../../stories/storiesHierarchy'; const PageWithScrollConstants = (function () { const SAFETY = 5; const pageHeight = 500; const pageBottomPadding = 48; const headerContainerHeight = 156; const minimizedHeaderContainerHeight = 67; const scrollTrigger = headerContainerHeight - minimizedHeaderContainerHeight + SAFETY; const maxScrollNoTrigger = headerContainerHeight - minimizedHeaderContainerHeight - SAFETY; return { scrollTrigger, maxScrollNoTrigger, minimizedHeaderContainerHeight, headerContainerHeight, pageBottomPadding, pageHeight, }; })(); export const storySettings = { category: CATEGORY.LAYOUT, storyName: 'Page', dataHook: 'story-page', PageWithScrollConstants, };