Blog/January 24, 2024

Yumma CSS 1.1

This update isn't going to introduce any major new features. It's more about syntax changes. Anyway, here it is - Yumma CSS v1.1.0

Yumma CSS 1.1

Button transition

Refreshed the btn-* component with transitions for a more polished feel.


Font Sizes

Added the fs-xs utility for smaller typography controls.

UtilityProperty
fs-xsfont-size: 0.6rem;

Dimension utilities

Introduced the dim-* utility to replace height & width utilities for more concise layouts.

<div class="h-12 h-12"></div>
<div class="dim-12"></div>

Media query changes

Renamed the xsm & xlg breakpoints to xs & xl for consistency.

"xsm": 0,
"xlg": 1200px
"xs": 0,
"xl": 1200px

Utility changes

Refined utility syntax & introduced minor increments across several utilities.

Box Shadow

<div class="bs-xsm"></div>
<div class="bs-xlg"></div>
<div class="bs-xs"></div>
<div class="bs-xl"></div>

Font Sizes

<div class="fs-xlg"></div>
<div class="fs-xl"></div>

Columns

<div class="col-2"></div>
<div class="cols-2"></div>

Upgrade

Terminal window
pnpm up yummacss@latest