mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
53 lines
1.1 KiB
Vue
53 lines
1.1 KiB
Vue
<template>
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const mode = useColorMode();
|
|
watchEffect(() => {
|
|
if (smallerScrollbars.value) {
|
|
document.documentElement.classList.add("has-custom-scrollbars");
|
|
} else {
|
|
document.documentElement.classList.remove("has-custom-scrollbars");
|
|
}
|
|
|
|
let theme = lightTheme.value;
|
|
if (theme === "auto") {
|
|
theme = mode.value;
|
|
}
|
|
document.querySelector('meta[name="theme-color"]')?.setAttribute("content", theme == "dark" ? "#121212" : "#F5F5F5");
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
});
|
|
</script>
|
|
<style>
|
|
html.has-custom-scrollbars {
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
display: content;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(128, 128, 128, 0.33);
|
|
outline: 1px solid slategrey;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background-color: #777;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-track:hover {
|
|
background-color: rgba(64, 64, 64, 0.33);
|
|
}
|
|
|
|
section main {
|
|
scrollbar-color: #353535 transparent;
|
|
scrollbar-width: thin;
|
|
}
|
|
}
|
|
</style>
|