You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add @supports (font: -apple-system-body) { html { font: -apple-system-body; } }. This will set the room em size based on the user's accessibility preference on Apple devices.
Specify the rest of relevant parts of your layout using rem units.
I would like the styles to support user-specified base font size, and ideally opt-in to Apple's dynamic system font size. This is a nice and simple guide: https://dev.to/colingourlay/how-to-support-apple-s-dynamic-text-in-your-web-content-with-css-40c0
It's a 2-step process:
@supports (font: -apple-system-body) { html { font: -apple-system-body; } }
. This will set the room em size based on the user's accessibility preference on Apple devices.rem
units.I may contribute this once issue #2 is resolved.
The text was updated successfully, but these errors were encountered: