pico
pico copied to clipboard
feat: support ordered list breadcrumb
Context
As mentioned in the ARIA Authoring Practices Guide, a breadcrumb trail represents page hierarchy, which implies some type of order. Hence, the suggested implementation for a breadcrumb trail is to use an ordered list (ol).
However, Pico CSS only applies breadcrumb styles to unordered lists (ul).
This PR
- Updates breadcrumb styles to apply to both
ulandolelements.
Why not just remove the ul entirely and just target li?