add problems

This commit is contained in:
Виталий Лавшонок
2025-10-28 23:15:29 +03:00
parent edd4426780
commit 71985fa04f
9 changed files with 625 additions and 13 deletions

View File

@@ -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;
}