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

Replace ... to smaller … HTML character

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-07-20 11:32:28 +03:00
parent a60bb35fb8
commit 5d122fc66d
2 changed files with 6 additions and 2 deletions

View File

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

View File

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