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

Fix link coloring in few places

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-11-01 08:40:52 +03:00
parent 78ed4320e0
commit 7c15bd2612
3 changed files with 10 additions and 2 deletions

View File

@ -50,4 +50,8 @@
display: block; display: block;
padding-top: 6px; padding-top: 6px;
} }
a[href] {
color: var(--colorInfo);
}
} }

View File

@ -119,8 +119,8 @@ export class AddCluster extends React.Component {
<SettingLayout className="AddClusters"> <SettingLayout className="AddClusters">
<h2>Add Clusters from Kubeconfig</h2> <h2>Add Clusters from Kubeconfig</h2>
<p> <p>
Clusters added here are <b>not</b> merged into the <code>~/.kube/config</code> file. Clusters added here are <b>not</b> merged into the <code>~/.kube/config</code> file.{" "}
Read more about adding clusters <a href={`${docsUrl}/catalog/add-clusters/`} rel="noreferrer" target="_blank">here</a>. <a href={`${docsUrl}/catalog/add-clusters/`} rel="noreferrer" target="_blank">Read more about adding clusters</a>.
</p> </p>
<div className="flex column"> <div className="flex column">
<MonacoEditor <MonacoEditor

View File

@ -43,4 +43,8 @@
background: $contentColor; background: $contentColor;
color: $textColorSecondary; color: $textColorSecondary;
} }
a {
color: var(--colorInfo);
}
} }