Skip to content

Commit 393d29f

Browse files
committed
style(content-parser): improve blockquote styling with tailwind classes
Apply tailwind utility classes to enhance blockquote appearance and remove unwanted pseudo-element content
1 parent b53a6a7 commit 393d29f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/designs/styles/content-parser.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,14 @@
2828
.twitter-tweet[data-theme="light"] a {
2929
color: black !important;
3030
}
31+
32+
blockquote {
33+
@apply border-l-4 border-primary pl-4 italic;
34+
& p:first-of-type::before {
35+
@apply content-none;
36+
}
37+
& p:last-of-type::after {
38+
@apply content-none;
39+
}
40+
}
3141
}

0 commit comments

Comments
 (0)