Skip to content

Commit

Permalink
fix/#91 各NotionBlockへの細かい対応 callout 間違いfix.
Browse files Browse the repository at this point in the history
- U-icon大文字間違いfix
- ついでにyoutubeのcaption調整
  • Loading branch information
u-ecmaker committed Oct 22, 2024
1 parent f1c72a0 commit b8faf42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/notion/blocks/Callout/Callout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Callout = ({ block }: Props) => {
:isGear ? '/logos/400^2_tomei.gif'
:isGear2 ? '/logos/400^2_tomei.gif'
:isRobot ? '/blocks-images/AI-icon.svg'
:isUnicorn ? '/blocks-images/u-icon-tomei3.png'
:isUnicorn ? '/blocks-images/U-icon-tomei3.png'
:/*default*/ '/logos/400^2_tomei.gif'
}
isReverse={ isGorilla || isRobot }
Expand Down
2 changes: 1 addition & 1 deletion src/components/notion/blocks/embed/YouTube.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const YouTube = ({ url, caption }: Props) => {
className="w-full max-h-[400px] max-w-[550px]"
></iframe>
{caption && (
<figcaption className="text-xs text-gray-400 text-center">
<figcaption className="text-xs text-gray-400 text-center mt-1">
{caption}
</figcaption>
)}
Expand Down

0 comments on commit b8faf42

Please sign in to comment.