Skip to content

Commit

Permalink
Showing 2 changed files with 17 additions and 15 deletions.
30 changes: 16 additions & 14 deletions app/elements/docs/layout.mjs
Original file line number Diff line number Diff line change
@@ -13,23 +13,25 @@ export default function DocsLayout({ html, state }) {
color: var(--purple-princess);
}
/* Scrollbars */
body {
scrollbar-color: var(--grey-greyer) transparent;
}
@media screen and (min-width: 56em) {
/* Scrollbars */
body {
scrollbar-color: var(--grey-greyer) transparent;
}
::-webkit-scrollbar {
height: 8px;
width: 8px;
}
::-webkit-scrollbar {
height: 8px;
width: 8px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: var(--grey-greyer);
::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: var(--grey-greyer);
}
}
</style>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b2c3709

Please sign in to comment.