Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/quote/Quote.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Quote = ({

return (
<div className="container my-3 mb-lg-5" id={strapi_component + "-" + id}>
<section className={`quote variant-${variant}`}>
<section className={`quote variant-${variant} py-5`}>
{(image && !videoUrl) && (
<div className="quote-body">
<img
Expand Down Expand Up @@ -55,7 +55,7 @@ const Quote = ({

<div className="quote-person">
<h4 className="quote-person-title">{title}</h4>
<p className="quote-person-text">{description}</p>
<MarkdownView markdown={description} className="quote-person-text" />

{profile && (
<div className="quote-profile make-it-fast my-3 my-md-2 my-xl-4 d-flex gap-3 justify-content-between">
Expand Down
2 changes: 1 addition & 1 deletion src/components/quote/quote.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
&-text {
margin-bottom: 0;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-line-clamp: 7;
-webkit-box-orient: vertical;
overflow: hidden;
}
Expand Down