Removes unnecessary margin in ufm-render-element (#2461)

This commit is contained in:
Søren Kottal
2024-10-17 11:31:12 +02:00
committed by GitHub
parent 790f15afcc
commit 2067e0dc58

View File

@@ -59,6 +59,14 @@ export class UmbUfmRenderElement extends UmbLitElement {
pre {
overflow: auto;
}
:host > :first-child {
margin-block-start: 0;
}
:host > :last-child {
margin-block-end: 0;
}
`,
];
}