| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-03-06 | 1.3 kB | |
| v4.0.17 source code.tar.gz | 2026-03-06 | 44.6 MB | |
| v4.0.17 source code.zip | 2026-03-06 | 44.7 MB | |
| Totals: 3 Items | 89.3 MB | 0 | |
CHANGELOG 4.0.17
🚀 Added
- None
🩹 Fixed
- Inset icon invisible when slider value is not minimum https://github.com/beercss/beercss/issues/581
- Mismatched corner radius for no-round buttons https://github.com/beercss/beercss/issues/579
- Footer cuts off overlay content from main sections https://github.com/beercss/beercss/issues/558
- Race condition in ui function https://github.com/beercss/beercss/issues/552
- Sliders on Safari on a phone aren't usable https://github.com/beercss/beercss/issues/549
- No hover effect with ripple helpers https://github.com/beercss/beercss/issues/539
⚠️ Breaking changes
- .no-opacity is counter-intuitive https://github.com/beercss/beercss/issues/440
.no-opacity is counter-intuitive
:::html
// before
<div class="no-opacity"></div> // 1
<div class="small-opacity"></div> // 0.75
<div class="medium-opacity"></div> // 0.5
<div class="large-opacity"></div> // 0.25
<div class="opacity"></div> // 0
:::html
// after
<div class="no-opacity"></div> // 0
<div class="small-opacity"></div> // 0.25
<div class="medium-opacity"></div> // 0.5
<div class="large-opacity"></div> // 0.75
<div class="opacity"></div> // 1