fix(ui): remove extra margins from Dockerfile details section EE-4790 (#8213)

pull/8212/head^2
andres-portainer 2022-12-21 19:09:40 -03:00 committed by GitHub
parent e5fd0c9595
commit b2bc4b92d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 52 additions and 56 deletions

View File

@ -20,8 +20,6 @@ interface Props {
export function DockerfileDetails({ image }: Props) {
return (
<div className="row">
<div className="col-lg-12 col-md-12 col-xs-12">
<TableContainer>
<TableTitle label="Dockerfile details" icon={List} />
<DetailsTable>
@ -77,7 +75,5 @@ export function DockerfileDetails({ image }: Props) {
)}
</DetailsTable>
</TableContainer>
</div>
</div>
);
}