Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Oct 30, 2024
1 parent f6b26ff commit 3ed62a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/customerCases/customerCase/CustomerCase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function CustomerCaseSection({
case "quoteBlock":
return (
section.quote && (
<div>
<div className={styles.quoteBlock}>
<Text>{section.quote}</Text>
{section.author && <Text>- {section.author}</Text>}
</div>
Expand Down
10 changes: 10 additions & 0 deletions src/components/customerCases/customerCase/customerCase.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,13 @@
flex-direction: column;
gap: 4.5rem;
}

.quoteBlock {
border: 2px solid #f1c40f; /* Yellow border */
border-radius: 8px; /* Rounded corners */
padding: 16px; /* Inner padding */
background-color: #f9f9f9; /* Light background */
color: #333; /* Text color */
max-width: 400px; /* Set max-width if desired */
font-family: Arial, sans-serif; /* Basic font */
}

0 comments on commit 3ed62a3

Please sign in to comment.