We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39dc4c commit 7b7b18eCopy full SHA for 7b7b18e
src/packages/core/notification/layouts/default/notification-layout-default.element.ts
@@ -36,7 +36,7 @@ export class UmbNotificationLayoutDefaultElement extends LitElement {
36
return html`${Object.entries(list).map(
37
([property, errors]) =>
38
html`<div class="structured-list">
39
- <span>${property}:</span>
+ <p>${property}:</p>
40
<ul>
41
${this.#renderListItem(errors)}
42
</ul>
@@ -58,9 +58,8 @@ export class UmbNotificationLayoutDefaultElement extends LitElement {
58
.structured-list ul {
59
margin: 0;
60
}
61
- .structured-list span {
62
- display: block;
63
- padding: var(--uui-size-3) 0 var(--uui-size-1);
+ .structured-list p {
+ margin: var(--uui-size-3) 0 var(--uui-size-1);
64
65
`,
66
];
0 commit comments