Update color variables stylesheet

This commit is contained in:
2026-05-17 20:40:53 +02:00
parent 555bdb0cfb
commit 7f5cbf5665
2 changed files with 30 additions and 17 deletions
+5 -2
View File
@@ -28,7 +28,7 @@ watch(colorTheme, val => updateColorTheme(val))
</script>
<template>
<div :class="{ dark: colorTheme === 'dark' }" class="app-wrapper">
<div :class="{ dark: colorTheme === 'dark' }" id="app-wrapper">
<Navbar />
<div class="main-content">
@@ -47,9 +47,12 @@ watch(colorTheme, val => updateColorTheme(val))
width: calc(100% - var(--main-content-padding-x) * 2);
flex-grow: 1;
}
.app-wrapper {
#app-wrapper {
min-height: 100vh;
display: flex;
flex-direction: column;
background-color: var(--light-bg);
color: var(--dark);
}
</style>