From 6640c173c1be7cc878862f917b9b7f6c515ea507 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 25 Aug 2022 12:24:17 +0200 Subject: [PATCH] fix(ui) - help icon padding --- frontend/app/components/Session_/Exceptions/Exceptions.js | 3 +-- .../app/components/ui/QuestionMarkHint/QuestionMarkHint.js | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/app/components/Session_/Exceptions/Exceptions.js b/frontend/app/components/Session_/Exceptions/Exceptions.js index 0a30a025c..16371d110 100644 --- a/frontend/app/components/Session_/Exceptions/Exceptions.js +++ b/frontend/app/components/Session_/Exceptions/Exceptions.js @@ -115,7 +115,7 @@ export default class Exceptions extends React.PureComponent { onChange={this.onFilterChange} /> } - className="mr-8" /> diff --git a/frontend/app/components/ui/QuestionMarkHint/QuestionMarkHint.js b/frontend/app/components/ui/QuestionMarkHint/QuestionMarkHint.js index 5a974d44c..793edf95d 100644 --- a/frontend/app/components/ui/QuestionMarkHint/QuestionMarkHint.js +++ b/frontend/app/components/ui/QuestionMarkHint/QuestionMarkHint.js @@ -2,7 +2,7 @@ import React from 'react'; import cn from "classnames"; import { Icon, Popup } from 'UI'; -export default function QuestionMarkHint({ onHover = false, content, className, ...props }) { +export default function QuestionMarkHint({ onHover = false, content, ...props }) { return ( - + ); } \ No newline at end of file