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

Align cluster name on left

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-05-28 14:48:48 +03:00
parent 89c461a3bf
commit d6f5cca350
2 changed files with 2 additions and 8 deletions

View File

@ -52,12 +52,7 @@ export class ClusterManager extends React.Component {
<div className="ClusterManager">
<main>
{ isClusterVisible && (
<TopBar label={(
<>
<Icon svg="kube"/>{" "}
{cluster.contextName}
</>)
}>
<TopBar label={cluster.name}>
<div>
<MaterialTooltip title="Back to Catalog" placement="left">
<Icon style={{ cursor: "default" }} material="close" onClick={() => navigate(catalogURL())}/>

View File

@ -8,10 +8,9 @@
}
.title {
@apply font-bold;
@apply font-bold px-6;
color: var(--textColorAccent);
align-items: center;
justify-content: center;
display: flex;
}