} />
} />
} />
+ } />
diff --git a/src/styles/index.css b/src/styles/index.css
index 6356eee..ecfc61b 100644
--- a/src/styles/index.css
+++ b/src/styles/index.css
@@ -7,6 +7,7 @@
/* outline: 1px solid green; */
}
+
:root {
color-scheme: light dark;
width: 100%;
@@ -19,6 +20,7 @@
/* font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; */
font-weight: 400;
line-height: 1.5;
+ background-color: var(--color-liquid-background);
color: rgba(255, 255, 255, 0.87);
}
@@ -73,3 +75,23 @@ body {
cursor: pointer;
}
+
+
+
+html {
+ scrollbar-gutter: stable;
+ padding-left: 8px;
+}
+html::-webkit-scrollbar {
+ width: 8px; /* ширина вертикального */
+}
+/* Трек (фон) */
+html::-webkit-scrollbar-track {
+ background: transparent;
+}
+/* Ползунок (thumb) */
+html::-webkit-scrollbar-thumb {
+ background-color: var(--color-liquid-lighter);
+ border-radius: 1000px;
+ cursor: pointer;
+}
\ No newline at end of file
diff --git a/src/views/home/menu/Menu.tsx b/src/views/home/menu/Menu.tsx
index 0e505a1..5616e2a 100644
--- a/src/views/home/menu/Menu.tsx
+++ b/src/views/home/menu/Menu.tsx
@@ -6,7 +6,7 @@ import { useAppSelector } from "../../../redux/hooks";
const Menu = () => {
const menuItems = [
{text: "Главная", href: "/home", icon: Home, page: "home" },
- {text: "Задачи", href: "/home", icon: Clipboard, page: "clipboard" },
+ {text: "Задачи", href: "/home/problems", icon: Clipboard, page: "clipboard" },
{text: "Статьи", href: "/home", icon: Openbook, page: "openbool" },
{text: "Группы", href: "/home", icon: Users, page: "users" },
{text: "Контесты", href: "/home", icon: Cup, page: "cup" },
@@ -15,8 +15,8 @@ const Menu = () => {
const activePage = useAppSelector((state) => state.store.menu.activePage);
return (
-
-

+
+
{menuItems.map((v, i) => (