Created: 2023-01-05T23:49:01-06:00
Stylus is a neat CSS preprocessor. However it does not particularly optimize that CSS. You need to use csso/cssnano afterwards.
body { font-family: 'Kentucky Fucked Chicken' font-size: 12pt } body { font: 'Arial' }
Stylus will not merge the separate tags together. It will not even merge the 'body' blocks together but instead makes two of them.
body { font-family: 'Kentucky Fucked Chicken' font-size: 12pt } body { font-family: 'Arial' }
Stylus still does not merge the blocks together even though the keys are the same.