mirror of
https://github.com/picocss/pico.git
synced 2025-04-21 17:16:14 -04:00
Exclude html
entity from aria-busy
When using Pico with Rails Turbo, this would cause the page to "jump" because Turbo adds the `aria-busy` attribute to the root `html` entity on a page. Excluding it from this list makes the page not jump.
This commit is contained in:
parent
0534acfa8d
commit
1874510be3
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
}
|
||||
|
||||
// Everyting except form elements
|
||||
[aria-busy="true"]:not(input, select, textarea) {
|
||||
[aria-busy="true"]:not(input, select, textarea, html) {
|
||||
|
||||
&::before {
|
||||
display: inline-block;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue