Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
enh(Resource-status/Filter): Fix Filter select width (#10319)
Browse files Browse the repository at this point in the history
* Fix filter select width

* Fix loading skeleton width
  • Loading branch information
bdauria authored and Thebarda committed Oct 20, 2021
1 parent 2fdb02a commit 499307b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from 'react';
import { Skeleton } from '@material-ui/lab';

const FilterLoadingSkeleton = (): JSX.Element => {
return <Skeleton height={33} style={{ transform: 'none' }} width={200} />;
return <Skeleton height={33} style={{ transform: 'none' }} width={175} />;
};

export default FilterLoadingSkeleton;
2 changes: 1 addition & 1 deletion www/front_src/src/Resources/Filter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const useStyles = makeStyles((theme) => ({
display: 'grid',
gridAutoFlow: 'column',
gridGap: theme.spacing(1),
gridTemplateColumns: 'auto auto auto 1fr',
gridTemplateColumns: 'auto 175px auto 1fr',
width: '100%',
},
loader: { display: 'flex', justifyContent: 'center' },
Expand Down

0 comments on commit 499307b

Please sign in to comment.