mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-16 13:45:29 +01:00
13 lines
432 B
TypeScript
13 lines
432 B
TypeScript
export const updateCardHV = () => {
|
|
/// #if MOBILE
|
|
if (window.matchMedia("(orientation:portrait)").matches) {
|
|
document.querySelectorAll(".card__action .card__icon").forEach(item => {
|
|
item.classList.remove("fn__none");
|
|
});
|
|
} else {
|
|
document.querySelectorAll(".card__action .card__icon").forEach(item => {
|
|
item.classList.add("fn__none");
|
|
});
|
|
}
|
|
/// #endif
|
|
};
|