Add styles

This commit is contained in:
Yana
2024-10-11 21:31:24 +03:00
parent 56fa743be3
commit 87d4cd5400
4 changed files with 12 additions and 4 deletions
@@ -9,7 +9,7 @@ export const LandingPage = () => {
href: "/developers",
Icon: Zap,
},
{ text: "SDKs", href: "/sdk", Icon: Code },
{ text: "SDKs", href: "/developers/rust", Icon: Code },
{
text: "Operators: Setup Guides & Maintenance",
href: "/operators",
+4
View File
@@ -30,6 +30,10 @@ div.nextra-code-block > div {
color: var(--textPrimary) !important;
}
.nextra-sidebar-container {
border-right: 1px solid #262626;
}
/* aside ul > li > a:hover{
background: #fb6e4ea9 !important;
} */
@@ -1,8 +1,12 @@
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import { Search } from 'nextra-theme-docs';
import { useConfig } from 'nextra-theme-docs';
import { Footer } from "./components/footer";
const config: DocsThemeConfig = {
const config = {
logo: <span>Nym Docs</span>,
project: {
link: "https://github.com/nymtech/nym",
@@ -11,7 +15,7 @@ const config: DocsThemeConfig = {
link: "https://matrix.to/#/#dev:nymtech.chat",
},
docsRepositoryBase:
"https://github.com/nymtech/nym/tree/develop/documentation/",
"https://github.com/nymtech/nym/tree/develop/documentation/docs",
footer: {
text: Footer,
},
+1 -1
View File
@@ -15,6 +15,6 @@
"isolatedModules": true,
"jsx": "preserve"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "theme.config.jsx"],
"exclude": ["node_modules"]
}