Skip to content

Commit

Permalink
Merge pull request #237 from k35o/blog-layout
Browse files Browse the repository at this point in the history
blogの整理
  • Loading branch information
k35o committed Aug 31, 2024
2 parents 3865b1a + ccfa3f1 commit d2ce6b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/blog/_components/blog-layout/blog-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const BlogLayout: FC<{
}> = ({ children, updatedAt }) => {
return (
<div className="flex flex-col gap-4">
<article className="rounded-lg bg-bgBase/90 px-1 py-14 pt-4 sm:px-10">
<article className="rounded-lg bg-bgBase/90 px-3 py-14 pt-4 sm:px-10">
<p className="text-end text-textDescription">
{updatedAt}に公開
</p>
Expand Down
4 changes: 3 additions & 1 deletion src/app/blog/color-contrast/opengraph-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export default async function OpenGraphImage() {
style={{
alignItems: 'center',
display: 'flex',
backgroundImage: 'linear-gradient(70deg, #cbd5e1, #5eead4)',
backgroundColor: '#50e2d2',
backgroundImage:
'linear-gradient(62deg, #50e2d2 0%, #8584ae 100%)',
justifyContent: 'center',
width: '100%',
height: '100%',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ export default async function OpenGraphImage() {
style={{
alignItems: 'center',
display: 'flex',
backgroundImage: 'linear-gradient(70deg, #cbd5e1, #5eead4)',
backgroundColor: '#50e2d2',
backgroundImage:
'linear-gradient(62deg, #50e2d2 0%, #8584ae 100%)',
justifyContent: 'center',
width: '100%',
height: '100%',
Expand Down

0 comments on commit d2ce6b0

Please sign in to comment.