mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Fix <a href...> visibility (#4208)
* Removing tailwind base and components styles Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix link coloring in few places Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
6294343b79
commit
c7e38052fc
@ -50,4 +50,8 @@
|
||||
display: block;
|
||||
padding-top: 6px;
|
||||
}
|
||||
|
||||
a[href] {
|
||||
color: var(--colorInfo);
|
||||
}
|
||||
}
|
||||
|
||||
@ -119,8 +119,8 @@ export class AddCluster extends React.Component {
|
||||
<SettingLayout className="AddClusters">
|
||||
<h2>Add Clusters from Kubeconfig</h2>
|
||||
<p>
|
||||
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>.
|
||||
Clusters added here are <b>not</b> merged into the <code>~/.kube/config</code> file.{" "}
|
||||
<a href={`${docsUrl}/catalog/add-clusters/`} rel="noreferrer" target="_blank">Read more about adding clusters</a>.
|
||||
</p>
|
||||
<div className="flex column">
|
||||
<MonacoEditor
|
||||
|
||||
@ -19,8 +19,6 @@
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
@import "tailwindcss/base";
|
||||
@import "tailwindcss/components";
|
||||
@import "tailwindcss/utilities";
|
||||
@import "~flex.box";
|
||||
@import "fonts";
|
||||
|
||||
@ -43,4 +43,8 @@
|
||||
background: $contentColor;
|
||||
color: $textColorSecondary;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--colorInfo);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user