Files
ickshonpe 6d9511a5f3 Implement From<Val> for Fontsize (#24076)
# Objective

Implement `From<Val>` for `Fontsize` so that the `Val` `px`, `vh`, etc
helpers to be used to set font sizes in `bsn! `.

## Solution

Implement `From<Val>` for `Fontsize`, with `Val::Auto` mapped to
`FontSize:Rem(1.)` and `Val::Percent(x)` mapped to
`FontSize::Rem(x/100.)`.
2026-05-03 23:54:53 +00:00
..