From 3606df1b74666ac60b01c542e67fcf0437fdaa36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Ram=C3=ADrez?= Date: Wed, 22 Oct 2014 13:37:57 -0600 Subject: [PATCH] Fix bottom padding on source code dialog. Source code dialogs don't look good because they do not have a padding at the bottom. So the code almost appear at the dialog border. --- index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.html b/index.html index 03f62d48..36dd5eba 100644 --- a/index.html +++ b/index.html @@ -39,6 +39,10 @@ } .icon-preview:hover i { color: #4285f4; } .icon-preview:hover span { display: block; cursor: text; } + + .modal-content .modal-body { + padding-bottom: 14px; + }