From 8a73706512889cb4bb6b64eb74f9af15aba9f6ad Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 5 Nov 2015 14:32:55 -0800 Subject: [PATCH] Fix container height in message detail screen // FREEBIE --- stylesheets/_conversation.scss | 3 +++ stylesheets/manifest.css | 2 ++ 2 files changed, 5 insertions(+) diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index 5c4531a4..6143abc3 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -45,6 +45,9 @@ } .message-detail { + .container { + height: calc(100% - (#{$header-height} + 4px)); + } .message-container { background: white; diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index a0642f8e..eb3c812b 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -571,6 +571,8 @@ input.search { font-family: monospace; padding: 0 1em; } +.message-detail .container { + height: calc(100% - (36px + 4px)); } .message-detail .message-container { background: white; padding: 1em 0; }