Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pavel-pi/kiss-em.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Herman Schumacher Elgesem <oleherman93@gmail.com>2018-05-19 02:21:10 +0300
committerOle Herman Schumacher Elgesem <oleherman93@gmail.com>2018-05-19 02:33:07 +0300
commit6400e6cb6f81f2c10a2363a7b4893c912aada212 (patch)
tree03ba1a07ba7747e3df175d391e4ffe40a8179d3b
parentd49d1741f42466e14fb0bbbc73ac3822631c42bc (diff)
Removed invisible margin which caused titles to wrap
Signed-off-by: Ole Herman Schumacher Elgesem <oleherman93@gmail.com>
-rw-r--r--layouts/index.html2
-rw-r--r--static/css/style.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 380bea7..57f81d3 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -4,7 +4,7 @@
<div class="container">
{{ range sort .Paginator.Pages }}
<article>
- <div class="subtitle is-6 is-pulled-right">
+ <div class="subtitle tags is-6 is-pulled-right">
{{ if .Params.tags }}
{{ partial "tags" .Params.tags }}
{{ end }}
diff --git a/static/css/style.css b/static/css/style.css
index 436b7ee..b7fc079 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -5712,3 +5712,7 @@ img[src$="#r"] {
.related ul {
font-size: 17px;
}
+
+div.subtitle.tags{
+ margin-bottom: 0px;
+}