Skip to content

Commit 47c27a8

Browse files
author
Luciano Nooijen
committed
Added blockquote support
Signed-off-by: Luciano Nooijen <[email protected]>
1 parent 8aabc7d commit 47c27a8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/styles/global-css.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,21 @@ const GlobalStyles = createGlobalStyle`
9292
list-style: decimal;
9393
padding-left: 1rem;
9494
};
95+
blockquote {
96+
margin-left: 10%;
97+
font-style: italic;
98+
position: relative;
99+
::before {
100+
content: '‘‘';
101+
color: ${theme.colors.primary};
102+
font-size: 60px;
103+
position: absolute;
104+
top: 10px;
105+
left: -30px;
106+
letter-spacing: -4px;
107+
font-family: "Times New Roman", Times, serif;
108+
}
109+
}
95110
`;
96111

97112
export { GlobalStyles };

0 commit comments

Comments
 (0)