UNPKG

@atlaskit/page-layout

Version:

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

7 lines 296 B
import { LEFT_PANEL_WIDTH } from './constants'; export var getLeftPanelWidth = function getLeftPanelWidth() { if (typeof window === 'undefined') { return 0; } return parseInt(window.getComputedStyle(document.documentElement).getPropertyValue("--".concat(LEFT_PANEL_WIDTH)), 10) || 0; };