refactor: move .article-copyright style to partials/layout/article

This commit is contained in:
Jimmy Cai 2021-07-25 17:48:11 +00:00 committed by GitHub
parent 932f643391
commit 3ab941918b
2 changed files with 6 additions and 8 deletions

View File

@ -137,14 +137,6 @@
} }
} }
.article-footer {
.article-copyright {
a {
color: var(--body-text-color);
}
}
}
/* Compact style article list */ /* Compact style article list */
.article-list--compact { .article-list--compact {
border-radius: var(--card-border-radius); border-radius: var(--card-border-radius);

View File

@ -70,6 +70,12 @@
flex-wrap: wrap; flex-wrap: wrap;
text-transform: unset; text-transform: unset;
} }
.article-copyright {
a {
color: var(--body-text-color);
}
}
} }
} }
} }