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 450edc3 commit 4161b07Copy full SHA for 4161b07
src/packages/sysinfo/components/sysinfo.element.ts
@@ -78,7 +78,7 @@ export class UmbSysinfoElement extends UmbModalBaseElement {
78
${when(
79
this._loading,
80
() => html`<uui-loader-bar></uui-loader-bar>`,
81
- () => html` <umb-code-block> ${this._systemInformation} </umb-code-block> `,
+ () => html` <umb-code-block id="codeblock"> ${this._systemInformation} </umb-code-block> `,
82
)}
83
84
<uui-button
@@ -131,13 +131,9 @@ ${this._systemInformation}`;
131
static override readonly styles = [
132
UmbTextStyles,
133
css`
134
- #container {
+ #code-block {
135
max-height: 300px;
136
}
137
-
138
- .data-cell {
139
- word-break: break-word;
140
- }
141
`,
142
];
143
0 commit comments