Skip to content

Commit

Permalink
fix: reduce padding on new enrollment event form
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-joe committed Sep 4, 2024
1 parent b8bf3a2 commit e2c4ed7
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
// @flow
import React, { memo, type ComponentType } from 'react';
import { spacersNum } from '@dhis2/ui';
import withStyles from '@material-ui/core/styles/withStyles';
import { Widget } from '../../Widget';
import { DataEntry } from '../DataEntry';
Expand All @@ -11,7 +10,7 @@ import type { Props } from './validated.types';

const styles = () => ({
wrapper: {
paddingLeft: spacersNum.dp16,
paddingLeft: 0,
},
});

Expand All @@ -34,9 +33,6 @@ const ValidatedPlain = ({
<Widget
noncollapsible
borderless
header={
<></>
}
>
{ready && (
<div className={classes.wrapper}>
Expand Down

0 comments on commit e2c4ed7

Please sign in to comment.