From b353a292fe77994ffc61f41ba31f58f785ef2b6d Mon Sep 17 00:00:00 2001 From: Prachi Srivastava Date: Wed, 27 Sep 2017 16:04:21 +0530 Subject: [PATCH] Fix vertical alignment of shortcut icons - Add min-height to shortcut label Reviewed-by: James Valleroy --- plinth/templates/index.html | 2 ++ static/themes/default/css/plinth.css | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/plinth/templates/index.html b/plinth/templates/index.html index f9c0f0d41..7fc3be791 100644 --- a/plinth/templates/index.html +++ b/plinth/templates/index.html @@ -41,7 +41,9 @@

+
{{ shortcut.label|linebreaks }} +
diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css index 8c6106be4..8208111d6 100644 --- a/static/themes/default/css/plinth.css +++ b/static/themes/default/css/plinth.css @@ -113,4 +113,8 @@ footer { footer license-info p{ margin: 20px 0; +} + +.shortcut-label { + min-height:50px; } \ No newline at end of file