UNPKG

@chassis/core

Version:

CSS4 pre-processor and responsive framework for modern UI development

12 lines (9 loc) 263 B
import { CONFIG } from '../../index.js' export default class UnitUtils { static pxToRelative (px, root = CONFIG.typography.baseFontSize) { return px / root } static emToRelative (em, root = CONFIG.typography.baseFontSize) { return em * root } }