【Misskey】ピン留めされたノートを横スクロール表示するカスタムCSS
/* ピン留めされたノートを横スクロール表示 */
.contents._gaps > div._gaps {
display: flex;
flex-direction: row;
align-items: start;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scroll-snap-type: x mandatory;
div.xcSej {
min-width: 93% !important;
scroll-snap-align: start;
/* 高さを制限
div.xDn7E {
header + div > div {
overflow-y: auto;
max-height: 200px;
}
}*/
/* リアクションを非表示 */
div.xlT1y { display: none; }
}
}