UNPKG

@atlaskit/page-layout

Version:

A collection of components which let you compose an application's page layout.

7 lines 269 B
import { LEFT_PANEL_WIDTH } from './constants'; export const getLeftPanelWidth = () => { if (typeof window === 'undefined') { return 0; } return parseInt(window.getComputedStyle(document.documentElement).getPropertyValue(`--${LEFT_PANEL_WIDTH}`), 10) || 0; };