UNPKG

@barguide/style-guide

Version:

BarGuide.io | CSS Style Guide

60 lines (50 loc) 673 B
/** * @external https://www.joshwcomeau.com/css/custom-css-reset/ */ *, *:before, *:after { box-sizing: border-box; } * { margin: 0; } html, body { height: 100%; } body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; text-rendering: geometricPrecision; } canvas, img, picture, svg, video { display: block; max-width: 100%; } button, input, select, textarea { font: inherit; } h1, h2, h3, h4, h5, h6, p { overflow-wrap: break-word; } /* stylelint-disable selector-id-pattern, selector-max-id */ #root, #__next { isolation: isolate; } /* stylelint-enable selector-id-pattern, selector-max-id */