Skip to content

Commit

Permalink
Fix issues after removing classic theme
Browse files Browse the repository at this point in the history
  • Loading branch information
damianstasik committed Sep 7, 2023
1 parent 0ca9713 commit f422493
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/TextContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type TextContentProps = {

export default function TextContent({ children, className }: TextContentProps) {
return (
<div className="bg-white flex-1">
<div className="bg-white flex-1 overflow-hidden">
<div
className={clsx(
"prose lg:prose-lg mx-auto prose-h3:text-2xl prose-h3:leading-snug md:prose-h3:text-5xl md:prose-h3:leading-normal prose-li:marker:text-inherit prose-a:text-gray-600 my-4 px-5 md:px-0 md:my-14 text-gray-600",
Expand Down
2 changes: 1 addition & 1 deletion src/theme/BlogLastPost/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function BlogLastPost({ item }) {
{item.content.metadata.formattedDate}
</p>
<Link to={item.content.metadata.permalink}>
<h3 className="leading-snug text-3xl font-bold my-2 line-clamp-5">
<h3 className="leading-snug text-3xl font-bold my-2 line-clamp-5 text-white hover:underline">
{item.content.metadata.title}
</h3>
</Link>
Expand Down

0 comments on commit f422493

Please sign in to comment.