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

github.com/kritoke/darksimplicity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Rhone <matthew.rhone@outlook.com>2017-01-09 00:04:55 +0300
committerMatthew Rhone <matthew.rhone@outlook.com>2017-01-09 00:04:55 +0300
commitf353a4ecf1d252605bb217d01f8689b66bc5b8f4 (patch)
treee6336bd66b25613d7f3ac915174465dc60364ed2
parent7d3b3260204552b33d4f8ff94134f2640e4aba8e (diff)
Fix issue with tag placement on single page.
-rw-r--r--layouts/_default/single.html1
-rw-r--r--postcss/src/style.min.css3
-rw-r--r--static/css/style.min.css7
3 files changed, 11 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 6d74fae..341cd94 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -8,4 +8,5 @@
</span>
</div>{{ end }}
<div class="content-full">{{ .Content }}{{ partial "disqus.html" . }}</div>
+ </article>
{{ partial "footer.html" . }}
diff --git a/postcss/src/style.min.css b/postcss/src/style.min.css
index 1f49348..c9b73c6 100644
--- a/postcss/src/style.min.css
+++ b/postcss/src/style.min.css
@@ -132,3 +132,6 @@ p { margin-top: 5px;
.post-title-link:hover {
color: $linkHoverColor;
}
+article {
+ lost-center: 100% flex;
+} \ No newline at end of file
diff --git a/static/css/style.min.css b/static/css/style.min.css
index d335925..c09c765 100644
--- a/static/css/style.min.css
+++ b/static/css/style.min.css
@@ -319,3 +319,10 @@ p { margin-top: 5px;
.post-title-link:hover {
color: #aeaeae;
}
+article {
+ display: flex;
+ flex-flow: row wrap;
+ max-width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+} \ No newline at end of file