Skip to content

Commit

Permalink
Merge pull request #1099 from appfolio/feedback-modal-centering-fix
Browse files Browse the repository at this point in the history
fix: Rating Key Centering
  • Loading branch information
aaronmars authored Nov 11, 2022
2 parents 6deb920 + be645ef commit 04f07ba
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) => (
Expand Down

0 comments on commit 04f07ba

Please # to comment.