diff --git a/src/components/ContentView/DescriptionView/index.tsx b/src/components/ContentView/DescriptionView/index.tsx index 4cc2239..3039dd4 100644 --- a/src/components/ContentView/DescriptionView/index.tsx +++ b/src/components/ContentView/DescriptionView/index.tsx @@ -34,6 +34,15 @@ export const MarkdownWrapper = styled.div` } } + & blockquote > p { + padding-left: 14px; + text-indent: -14px; + + &::before { + content: '> '; + } + } + & summary { cursor: pointer; padding-left: 2px; diff --git a/src/components/ContentView/ExternalLinkView/index.tsx b/src/components/ContentView/ExternalLinkView/index.tsx index 631248f..509ba79 100644 --- a/src/components/ContentView/ExternalLinkView/index.tsx +++ b/src/components/ContentView/ExternalLinkView/index.tsx @@ -29,7 +29,7 @@ export const ExternalLinkView: FC = ({ links, isPrint }) {links .sort((a, b) => a.order - b.order) .map((link) => ( - + {isPrint ? `${link.name}: ${link.href}` : link.name} ))} diff --git a/src/components/Landing/index.tsx b/src/components/Landing/index.tsx index 69ba8eb..d562f78 100644 --- a/src/components/Landing/index.tsx +++ b/src/components/Landing/index.tsx @@ -104,16 +104,16 @@ const Landing: React.FC = () => {
- 우리 생활을 더 편리하게 만듭니다 + 생활을 더 편리하게 만듭니다 <br /> 개발자 <HighlightedTitle>하대겸</HighlightedTitle> <HintedTitle>Daegyeom Ha</HintedTitle>
- 우리 주변의 문제를 글이 아닌 기술로 표현합니다. + 주변의 문제를 기술로 해결할 수 있는 방법을 찾고 구현합니다.
- 문제를 기술로 해결하기 위해 노력하고 있습니다. + 문제를 해결할 때 기술보다 문제 본질에 더욱 집중하기 위해 노력합니다.
diff --git a/src/components/Link/ExternalLink/index.tsx b/src/components/Link/ExternalLink/index.tsx index ff946dc..bfc2cea 100644 --- a/src/components/Link/ExternalLink/index.tsx +++ b/src/components/Link/ExternalLink/index.tsx @@ -7,6 +7,7 @@ import Colors from '../../../styles/Colors'; interface ExternalLinkProps { readonly href: string; + readonly isPrint?: boolean; } const StyledLink = styled.a` @@ -22,10 +23,10 @@ const StyledLink = styled.a` } `; -export const ExternalLink: FC> = ({ href, children }) => { +export const ExternalLink: FC> = ({ href, isPrint, children }) => { return ( - {children} + {children} {!isPrint && } ); }; diff --git a/src/components/PdfView/index.tsx b/src/components/PdfView/index.tsx index 78ec0ca..0ee019b 100644 --- a/src/components/PdfView/index.tsx +++ b/src/components/PdfView/index.tsx @@ -102,15 +102,15 @@ export const PdfView = forwardRef - 우리 생활을 더 편리하게 만듭니다 + 생활을 더 편리하게 만듭니다 <br /> 개발자 <HighlightedTitle>하대겸</HighlightedTitle> <HintedTitle>(Daegyeom Ha)</HintedTitle> - 우리 주변의 문제를 글이 아닌 기술로 표현합니다. + 주변의 문제를 기술로 해결할 수 있는 방법을 찾고 구현합니다.
- 문제를 기술로 해결하기 위해 노력하고 있습니다. + 문제를 해결할 때 기술보다 문제 본질에 더욱 집중하기 위해 노력합니다.
@@ -126,10 +126,6 @@ export const PdfView = forwardRef Blog https://blog.skylightqp.kr

-

- LinkedIn - https://linkedin.com/in/daegyeom -