Optimized the indentation of layout Category and Tag.

This commit is contained in:
Cotes Chung 2019-12-08 00:15:09 +08:00
parent 9992e11228
commit bbdad4ebd9
3 changed files with 9 additions and 2 deletions

View File

@ -8,7 +8,7 @@ layout: page
{% include date-format.html %}
<div id="page-category">
<h1>
<h1 class="pl-lg-2">
<i class="far fa-folder-open fa-fw text-muted"></i>
{{ page.title }}
<span class="lead text-muted pl-2">{{ site.categories[page.category] | size }}</span>

View File

@ -8,7 +8,7 @@ layout: page
{% include date-format.html %}
<div id="page-tag">
<h1>
<h1 class="pl-lg-2">
<i class="fa fa-tag fa-fw text-muted"></i>
{{ page.title }}
<span class="lead text-muted pl-2">{{ site.tags[page.tag] | size }}</span>

View File

@ -55,10 +55,17 @@
}
@media all and (max-width: 576px) {
#page-category ul>li::before,
#page-tag ul>li::before {
margin: 0 .5rem;
}
#page-tag ul>li>a,
#page-category ul>li>a {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}