<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------------------
   アカウントリストのボタンがはみ出ないように改行する
----------------------------------------------*/

.account__wrapper {
  flex-wrap: wrap;
}

/* ----------------------------------------------
   タイムライン上の縦に長すぎる画像を制限する
----------------------------------------------*/

.no-reduce-motion .media-gallery__item-thumbnail img, .no-reduce-motion .media-gallery__preview {
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
.no-reduce-motion .media-gallery {
    max-height: min(300px, 33vh);
}

/* ----------------------------------------------
   acctを投稿右下に移動する
----------------------------------------------*/

.status{
    padding: 16px 16px 22px 16px;
}
.status .display-name__account{
    position: absolute;
    bottom: 0;
    right: 10px;
    font-size: 0.75em;
}


</pre></body></html>