diff options
author | Samy Pesse <samypesse@gmail.com> | 2015-11-24 23:38:26 +0100 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2015-11-24 23:38:26 +0100 |
commit | ced44c86cefdee523c48cff6a5b364feaed5f204 (patch) | |
tree | 50624938908c4ee3945d7dc77fc2500944712436 | |
parent | ee402ad44419b6c5d2f7976c82014d8136629892 (diff) | |
download | gitbook-ced44c86cefdee523c48cff6a5b364feaed5f204.zip gitbook-ced44c86cefdee523c48cff6a5b364feaed5f204.tar.gz gitbook-ced44c86cefdee523c48cff6a5b364feaed5f204.tar.bz2 |
Fix #1022: fix bottom margin for lists
-rw-r--r-- | theme/stylesheets/base/markup.less | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/theme/stylesheets/base/markup.less b/theme/stylesheets/base/markup.less index e77631c..45ed486 100644 --- a/theme/stylesheets/base/markup.less +++ b/theme/stylesheets/base/markup.less @@ -200,8 +200,8 @@ /* Lists */ ul, ol { padding: 0; - margin-top: 0; - margin-bottom: 0; + margin: 0; + margin-bottom: @spacing; padding-left: 2em; ol, ul { @@ -253,3 +253,4 @@ margin-left: 0; } } + |