Skip to content

Commit

Permalink
[frontend] fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
marieflorescontact committed Nov 6, 2024
1 parent 5509cca commit 992c926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DangerZoneBlock: FunctionComponent<DangerZoneBlockProps> = ({ title, compo
if (isSensitive) {
currentTitle = (
<>
{title}<DangerZoneChip style={{ marginTop: 0 }} />
{title}<DangerZoneChip />
</>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ const RulesListComponent = ({ relay, data, keyword }) => {
<DangerZoneBlock
type={'rules'}
title={t_i18n(rule.name)}
sx={{ title: { textWrap: 'nowrap' } }}
sx={{ title: { textWrap: 'nowrap', display: 'flex', alignItems: 'center' } }}
component={({ disabled, style }) => (
<Paper
variant="outlined"
Expand Down Expand Up @@ -549,7 +549,7 @@ const RulesListComponent = ({ relay, data, keyword }) => {
<Paper
variant="outlined"
classes={{ root: classes.paper }}
style={{ marginTop: 25 }}
style={{ marginTop: 23 }}
>
<div className={classes.definition}>
<div className={classes.left}>
Expand Down

0 comments on commit 992c926

Please sign in to comment.