Skip to content

Commit

Permalink
fix: UserAdd component responsive layout (#2300)
Browse files Browse the repository at this point in the history
col span of Facilities input was causing the grid to glitch when the grid had 1 column
  • Loading branch information
sainak authored May 12, 2022
1 parent 98f1a2c commit 332702f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Users/UserAdd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ export const UserAdd = (props: UserProps) => {
/>
</div>

<div className="col-span-2">
<div className="md:col-span-2">
<InputLabel>Facilities</InputLabel>
{userType === "Staff" || userType === "StaffReadOnly" ? (
<MultiSelectField
Expand Down

0 comments on commit 332702f

Please sign in to comment.