UNPKG

@mdbootstrap/bootstrap-sidebar

Version:

Sidebar is an additional navigation component that provides extensive support and a clear way for navigating through complex websites with hundreds of links and subpages.

17 lines (14 loc) 298 B
/* eslint-disable */ export function get(element) { return getComputedStyle(element); } export function set(element, obj) { for (const key in obj) { let val = obj[key]; if (typeof val === 'number') { val = `${val}px`; } element.style[key] = val; } return element; }