Skip to content

Commit

Permalink
refactor: 카테고리 css 이름 변경하다
Browse files Browse the repository at this point in the history
- 통일성있게 수정하다.
  • Loading branch information
ujuc committed Oct 10, 2022
1 parent 25ea5e9 commit 4575015
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,17 @@ h6 {

.article-text {
font-family: var(--body-font);
font-size: var(--body-font-size);
}

.pagination {
font-family: var(--body-font);
font-size: .9rem;
}

.category_title {
.category-title {
font-family: var(--body-font);
font-size: var(--body-font-size);
}

.toc {
Expand Down
2 changes: 1 addition & 1 deletion templates/categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="row">
<div class="container">
{% for category, articles in categories|sort %}
<div class="category_title">
<div class="category-title">
<em class="fa-solid fa-folder-open"></em>
<a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> / <em class="fa-solid fa-file-lines"></em> {{ articles|count }}
</div>
Expand Down

0 comments on commit 4575015

Please sign in to comment.