Fix shortcuts button not hiding on large screen

This commit is contained in:
Lim Chee Aun 2023-02-17 10:53:04 +08:00
parent ca943cbc5a
commit a1edc142ae

View file

@ -36,4 +36,8 @@
top: max(16px, env(safe-area-inset-top)); top: max(16px, env(safe-area-inset-top));
bottom: auto; bottom: auto;
} }
#app:has(header[hidden]) #shortcuts-button,
#shortcuts-button[hidden] {
transform: translateY(-200%);
}
} }