| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-08-04 | 1.8 kB | |
| v5.0.3 source code.tar.gz | 2026-08-04 | 44.8 MB | |
| v5.0.3 source code.zip | 2026-08-04 | 45.1 MB | |
| Totals: 3 Items | 89.9 MB | 1 | |
CHANGELOG 5.0.3
🚀 Added
- Updated icon fonts https://github.com/beercss/beercss/issues/646
- Added support for modules. The bundle can be reduced by up to 10x 😮 https://github.com/beercss/beercss/issues/644
🩹 Fixed
- Fixed
roundhelper on some use cases ofbuttonhttps://github.com/beercss/beercss/issues/625 - The
no-roundhelper is back and now is rendering square corners https://github.com/beercss/beercss/issues/492 - Fixed color theme on
navelement https://github.com/beercss/beercss/issues/598
⚠️ Breaking changes
- Updated
buttoninsidenavgroupelement
Added support for modules. The bundle can be reduced by up to 10x 😮
Read the fully docs here https://github.com/beercss/beercss/blob/main/docs/MODULES.md
Updated default button inside nav group element
:::html
// Before
<nav class="group">
<button class="left-round">Button</button>
<button class="no-round">Button</button>
<button class="no-round">Button</button>
<button class="right-round">Button</button>
</nav>
:::html
// After
<nav class="group">
<button class="left-round">Button</button>
<button>Button</button>
<button>Button</button>
<button class="right-round">Button</button>
</nav>
:::html
// Rendering a fully square corner
<nav class="group">
<button class="no-round left-round">Button</button>
<button class="no-round">Button</button>
<button class="no-round">Button</button>
<button class="no-round left-round">Button</button>
</nav>