github.com/cosmos/cosmos-sdk@v0.50.10/docs/src/css/base.css (about) 1 /* 2 Copied from https://github.com/ignite/cli/blob/develop/docs/src/css/base.css 3 */ 4 5 @layer base { 6 html { 7 @apply font-inter; 8 font-feature-settings: 'kern', 'liga', 'calt', 'zero' 0; 9 -webkit-font-feature-settings: 'kern', 'liga', 'calt', 'zero' 0; 10 text-size-adjust: 100%; 11 -moz-osx-font-smoothing: grayscale; 12 font-smoothing: antialiased; 13 font-variant-ligatures: contextual common-ligatures; 14 font-kerning: normal; 15 text-rendering: optimizeLegibility; 16 17 @supports (font-variation-settings: normal) { 18 @apply font-intervar 19 } 20 } 21 22 *, 23 *::before, 24 *::after { 25 box-sizing: border-box; 26 margin: 0; 27 } 28 29 svg { display: inline; } 30 31 ::selection{} 32 }