From f42c59669fffecba9ea23ebc84f81e54be3ebb02 Mon Sep 17 00:00:00 2001 From: kPherox Date: Wed, 22 May 2019 02:02:30 +0900 Subject: [PATCH] refs cutls#11 Fix the hidden last of the timeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 通知TLを一番下までスクロールしても最後の投稿の全文が見えない。(「アクションメニューを非表示」は「いいえ」にしてある) --- app/css/tl.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/css/tl.css b/app/css/tl.css index a9d38aea..097b7c1a 100644 --- a/app/css/tl.css +++ b/app/css/tl.css @@ -1,14 +1,13 @@ /*TL CSS(ただしBBCode pulse:master.css/spin:font-awesome*/ #main { - display: flex; width: 100vw; + height: calc(100vh - 40px); } #timeline-container { overflow-x: scroll; overflow-y: hidden; display: flex; - height: calc(100vh - 40px); - flex-grow: 4; + height: 100%; } #bottom { position: absolute; @@ -153,6 +152,8 @@ iframe { } } .boxIn { + display: flex; + flex-direction: column; height: 100%; border: thin solid gray; overflow: hidden; @@ -180,7 +181,7 @@ iframe { } .tl-box { position: relative; - height: calc(100% - 40px); + flex: 1; overflow-y: scroll; overflow-x: hidden; }