Added buttons wrapping (#2126)
* Added buttons wrapping * Layout improved
This commit is contained in:
parent
070fba4d08
commit
1ca8873d35
2 changed files with 3 additions and 2 deletions
|
@ -14,6 +14,8 @@ import { Button } from 'components/common/Button/Button';
|
||||||
|
|
||||||
const ConnectorActionsWrapperStyled = styled.div`
|
const ConnectorActionsWrapperStyled = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -21,11 +21,10 @@ const PageHeading: React.FC<PropsWithChildren<Props>> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
export default styled(PageHeading)`
|
export default styled(PageHeading)`
|
||||||
height: 56px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0px 16px;
|
padding: 16px;
|
||||||
|
|
||||||
& > div {
|
& > div {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Add table
Reference in a new issue