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

github.com/xiaoheiAh/hugo-theme-pure.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorSorin Sbarnea <ssbarnea@redhat.com>2019-12-30 16:57:07 +0300
committerSorin Sbarnea <ssbarnea@redhat.com>2019-12-30 17:29:00 +0300
commit98541ccb10bd6dcf3b445b39bffa3b99c98347da (patch)
tree6eb782375cffb266b0b5ae9b3de64375cfeac7d0 /static
parent31b94ccd426fa90215f5ceb2a645ca3343647cad (diff)
Avoid printing undefined dates
- Invalid date should render as empty string - Assures cotegory listing has consisten indentation Fixes: #59
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index f642324..02930ad 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -9433,3 +9433,9 @@ body.okayNav-loaded {
max-height: 200px;
}
}
+
+/* Assures listing in categories indentiation is consistent */
+time {
+ width: 10ch;
+ display: inline-block;
+} \ No newline at end of file