🔨 Fix view svgs in dark mode & nprogress added

This commit is contained in:
pheralb
2022-04-04 18:20:17 +01:00
parent a6e4902653
commit 5959a73406
8 changed files with 820 additions and 731 deletions
+1 -2
View File
@@ -24,7 +24,7 @@ import ModalSearch from "components/search/modal";
export default function Index({ children }) {
const sidebar = useDisclosure();
const border = useColorModeValue("dark.200", "dark.800");
const border = useColorModeValue("gray.200", "dark.800");
const bg = useColorModeValue("gray.100", "lightDark.900");
const SidebarContent = (props) => (
@@ -40,7 +40,6 @@ export default function Index({ children }) {
overflowY="auto"
borderColor={border}
borderRightWidth="1px"
shadow="sm"
w="56"
{...props}
>
+2 -2
View File
@@ -1,4 +1,4 @@
import { IoHomeOutline, IoLogoGithub } from 'react-icons/io5';
import { IoAppsOutline, IoLogoGithub } from 'react-icons/io5';
import { FiTwitter } from 'react-icons/fi';
const SidebarLinks = [
@@ -7,7 +7,7 @@ const SidebarLinks = [
href: "/",
external: false,
title: "Browse",
icon: IoHomeOutline,
icon: IoAppsOutline,
},
{
id: 2,