【Misskey】スマホでデッキUI使用時、メニューをボタンだけにするカスタムCSS

/* デッキUI時、メニューをボタンだけにする(スマホ) */
div.xtvr9 {
  padding-bottom: 0;
}
div.xntiB {
    display: block;
    bottom: -100px;
    button {
        right: 16px;
        position: absolute;
        filter: drop-shadow(1px 3px 5px var(--modalBg));
    }
    button:nth-of-type(1) {
        bottom: 260px;
    }
    button:nth-of-type(3) {
        bottom: 190px;
    }
    button:nth-of-type(4) {
        bottom: 120px;
    }
}