Feature(reviews): parse reviews with markdown, make sure paragraphs are shown

This commit is contained in:
Pieter Vander Vennet 2025-07-10 03:03:25 +02:00
parent c76b9b4ff6
commit 9a94670737
4 changed files with 34 additions and 10 deletions

View file

@ -5723,6 +5723,11 @@ svg.apply-fill path {
height: calc(2.5rem - 1px);
}
.in-markdown p, .in-markdown ol, .in-markdown ul {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
@media (min-width: 640px) {
.compass_arrow {
width: calc(2.75rem - 1px);
@ -8577,6 +8582,10 @@ svg.apply-fill path {
display: none;
}
.md\:h-6 {
height: 1.5rem;
}
.md\:h-64 {
height: 16rem;
}
@ -8637,6 +8646,10 @@ svg.apply-fill path {
width: 12rem;
}
.md\:w-6 {
width: 1.5rem;
}
.md\:w-6\/12 {
width: 50%;
}