Skip to content

Commit

Permalink
fix: rating key centering
Browse files Browse the repository at this point in the history
Rating keys in feedback modals are now centered per their container.
nicbertino committed Nov 11, 2022
1 parent 07de0d6 commit be645ef
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -15,10 +15,10 @@ const FeedbackModalRating: FC<FeedbackModalRatingProps> = ({
setRating,
}) => (
<div data-testid="feedback-modal-rating">
<div className="mb-5">
<div className="mb-5 text-center">
<div className="d-flex mb-2 mx-3 justify-content-between">
<span className="js-low-rating-text font-italic">{lowRatingText}</span>
<span className="js-high-rating-text font-italic">{highRatingText}</span>
<span className="js-low-rating-text">{lowRatingText}</span>
<span className="js-high-rating-text">{highRatingText}</span>
</div>
<div className="d-flex justify-content-around mb-2">
{[1, 2, 3, 4, 5].map((rating) => (

0 comments on commit be645ef

Please sign in to comment.