1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Replace ... to smaller … HTML character (#3450)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-07-20 12:23:45 +03:00 committed by GitHub
parent 686ae32dcb
commit 10ab882fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -33,10 +33,14 @@
max-width: 70vw; max-width: 70vw;
max-height: 40vh; max-height: 40vh;
white-space: pre-line; white-space: pre-line;
p {
margin-bottom: $margin;
}
} }
.Spinner { .Spinner {
--spinner-size: 48px; --spinner-size: 38px;
--spinner-border: calc(var(--spinner-size) / 10); --spinner-border: calc(var(--spinner-size) / 10);
} }

View File

@ -102,7 +102,7 @@ export class ClusterStatus extends React.Component<Props> {
<> <>
<Spinner singleColor={false} /> <Spinner singleColor={false} />
<pre className="kube-auth-out"> <pre className="kube-auth-out">
<p>{this.isReconnecting ? "Reconnecting..." : "Connecting..."}</p> <p>{this.isReconnecting ? "Reconnecting" : "Connecting"}&hellip;</p>
{authOutput.map(({ data, error }, index) => { {authOutput.map(({ data, error }, index) => {
return <p key={index} className={cssNames({ error })}>{data}</p>; return <p key={index} className={cssNames({ error })}>{data}</p>;
})} })}