mirror of
https://github.com/picocss/pico.git
synced 2025-04-26 19:26:14 -04:00
sass compiler was removing the value: "\200B" for the :where(navs li).
Updated, sass to include the 0 width space for VoiceOver, and removed the float for safari trimming dropdodwn list bugs.
This commit is contained in:
parent
9faf5914d0
commit
27ccea2e53
238 changed files with 240 additions and 238 deletions
|
@ -1,4 +1,5 @@
|
|||
@use "sass:map";
|
||||
@use "sass:string";
|
||||
@use "../settings" as *;
|
||||
|
||||
@if map.get($modules, "components/nav") {
|
||||
|
@ -13,7 +14,8 @@
|
|||
// https://github.com/picocss/pico/issues/634#issuecomment-2541600508
|
||||
:where(nav li)::before {
|
||||
float: none; // fixes safari bug in dropdowns. Previously was: left
|
||||
content: " "; //\200B"; // makes voice overs realize its a list item
|
||||
//content: " "; //\200B"; // makes voice overs realize its a list item
|
||||
content: string.unquote('"\\200B"');
|
||||
}
|
||||
|
||||
// Pico
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue