From e6da229b199942c86b6e3388d2ccf98bc24022c9 Mon Sep 17 00:00:00 2001 From: Raphael Goetter Date: Sun, 20 Apr 2014 20:58:28 +0200 Subject: [PATCH] add variable for table margin --- css/01-base.css | 2 +- less/01-base.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/01-base.css b/css/01-base.css index 0b3b079..dd6aa2e 100644 --- a/css/01-base.css +++ b/css/01-base.css @@ -197,7 +197,7 @@ video { } /* margin-bottom on tables */ table { - margin-bottom: 1.5em; + margin-bottom: 2em; } /* scripts */ body > script { diff --git a/less/01-base.less b/less/01-base.less index adf37e7..6482597 100644 --- a/less/01-base.less +++ b/less/01-base.less @@ -172,7 +172,7 @@ img, table, td, blockquote, code, pre, textarea, input, video { } /* margin-bottom on tables */ -table { margin-bottom: 1.5em; } +table { margin-bottom: @medium-value; } /* scripts */ body > script {display: none !important;}