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:
parent
686ae32dcb
commit
10ab882fed
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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"}…</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>;
|
||||||
})}
|
})}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user