From 2f1cdec2c3804a1db68f5f2ddc8c946e0df99fcc Mon Sep 17 00:00:00 2001 From: Linus Pahl Date: Tue, 27 Sep 2022 11:33:41 +0200 Subject: [PATCH] Remove not needed usage of CSS `line-height`. (#1186) --- src/web/aws/cloudwatch/StepReview.jsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/web/aws/cloudwatch/StepReview.jsx b/src/web/aws/cloudwatch/StepReview.jsx index fc092301e..c964ed2d9 100644 --- a/src/web/aws/cloudwatch/StepReview.jsx +++ b/src/web/aws/cloudwatch/StepReview.jsx @@ -17,11 +17,11 @@ import React, { useContext, useEffect, useState } from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; + import { Link } from 'components/common/router'; import Routes from 'routing/Routes'; import { Input } from 'components/bootstrap'; import { Icon } from 'components/common'; - import { FormDataContext } from 'aws/context/FormData'; import { ApiContext } from 'aws/context/Api'; import useFetch from 'aws/common/hooks/useFetch'; @@ -246,8 +246,7 @@ const ReviewItems = styled.ul` padding: 0; li { - line-height: 2; - padding: 0 5px; + padding: 5px; :nth-of-type(odd) { background-color: rgba(220, 225, 229, 0.4);