[READ-ONLY] Mirror of https://github.com/danielroe/postcss-capsize. PostCSS plugin to inject Capsize font metrics
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: update example capsize output

Daniel Roe (Mar 16, 2021, 10:54 PM UTC) 62c7664b 88700702

+4 -7
+4 -7
README.md
··· 74 74 75 75 ```css 76 76 .test { 77 - padding: 0.05px 0; 78 77 line-height: 12.4px; 79 78 font-size: 24px; 80 79 font-family: Test Mono; 81 80 } 82 81 .test::before { 83 82 content: ''; 84 - margin-top: -0.4604em; 85 - display: block; 86 - height: 0; 83 + margin-bottom: -0.4583em; 84 + display: table; 87 85 } 88 86 .test::after { 89 87 content: ''; 90 - margin-bottom: 0.0396em; 91 - display: block; 92 - height: 0; 88 + margin-top: 0.0417em; 89 + display: table; 93 90 } 94 91 ``` 95 92