fix: Stars positioning

This commit is contained in:
Vyacheslav Matyukhin 2022-05-26 16:44:39 +04:00
parent a6e6053c63
commit 1e357a75b8
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C
2 changed files with 10 additions and 6 deletions

View File

@ -160,9 +160,11 @@ export const QuestionFooter: React.FC<Props> = ({
<div
className={`grid grid-cols-3 ${
expandFooterToFullWidth ? "justify-between" : ""
} text-gray-500 mb-2 mt-1`}
} text-gray-500`}
>
<div className="self-center">
<Stars num={question.qualityIndicators.stars} />
</div>
<div
className={`${
expandFooterToFullWidth ? "place-self-center" : "self-center"

View File

@ -140,12 +140,14 @@ export const QuestionCard: React.FC<Props> = ({
<LastUpdated timestamp={lastUpdated} />
</div>
<div className="w-full">
<div className="mb-2 mt-1">
<QuestionFooter
question={question}
expandFooterToFullWidth={expandFooterToFullWidth}
/>
</div>
</div>
</div>
</Card>
);
};