Files
openlayers/site/util/typography.js
2019-05-20 10:30:44 -06:00

10 lines
232 B
JavaScript

import Typography from 'typography';
import theme from 'typography-theme-alton';
const typography = new Typography(theme);
export const baseSpacingPx = parseInt(theme.baseFontSize, 10);
export {theme};
export default typography;