Skip to content

Commit

Permalink
next主题细微调整
Browse files Browse the repository at this point in the history
  • Loading branch information
Hscpro committed Dec 9, 2022
1 parent db0dfe1 commit 9abce27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion themes/next/components/BlogPostCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 86,7 @@ const BlogPostCard = ({ post, showSummary }) => {

<div className="text-right border-t pt-8 border-dashed">
<Link href={`${BLOG.SUB_PATH}/${post.slug}`}>
<a className="hover:bg-opacity-100 hover:underline transform duration-300 p-3 text-white bg-gray-800 dark:bg-black cursor-pointer">
<a className="hover:bg-opacity-100 hover:underline transform duration-300 p-3 text-white bg-gray-800 cursor-pointer">
{locale.COMMON.ARTICLE_DETAIL}
<i className="ml-1 fas fa-angle-right" />
</a>
Expand Down
2 changes: 1 addition & 1 deletion themes/next/components/Logo.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ import React from 'react'
const Logo = props => {
const { siteInfo, className } = props
return <Link href='/' passHref>
<div className={'flex flex-col justify-center items-center cursor-pointer bg-black space-y-3 font-bold ' className}>
<div className={'flex flex-col justify-center items-center cursor-pointer bg-black dark:bg-gray-900 space-y-3 font-bold ' className}>
<div className='font-serif text-xl text-white'> {siteInfo?.title}</div>
<div className='text-sm text-gray-300 font-light text-center'> {siteInfo?.description}</div>
</div>
Expand Down

0 comments on commit 9abce27

Please sign in to comment.