Skip to content

Commit

Permalink
blockquote component minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
g-stamatis committed Jan 21, 2022
1 parent 1c83452 commit cdf71a8
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/customizations/components/theme/Blockquote/Blockquote.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@ import React from 'react';

function Blockquote({ citation, author }) {
return (
<div className="eeaBlockquote noQuotes">
<blockquote className="blockquoteQuote">
&#8220;{citation}&#8221;
<div
className="blockquoteAuthor"
style={{ fontWeight: 'bold', marginTop: '20px' }}
>
{author}
</div>
<div className="eea-blockquote">
<blockquote className="eea-blockquote-quote">
{citation}
<div className="eea-blockquote-author">{author}</div>
</blockquote>
</div>
);
Expand Down

0 comments on commit cdf71a8

Please sign in to comment.