🐛 Fix bugs

This commit is contained in:
2025-09-25 02:22:53 +08:00
parent 54e8ffea6f
commit 2de1e12c33
2 changed files with 5 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
<v-footer app fixed flat height="48"> <v-footer app fixed flat height="48">
<v-container class="mx-auto d-flex align-center justify-between"> <v-container class="mx-auto d-flex align-center justify-between">
<img <img
src="/_nuxt/assets/images/cloudy-lamb.png" :src="Icon"
alt="Cloudy Lamb" alt="Cloudy Lamb"
height="24" height="24"
width="24" width="24"
@@ -22,5 +22,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import Icon from "~/assets/images/cloudy-lamb.png"
const colorMode = useColorMode() const colorMode = useColorMode()
</script> </script>

View File

@@ -72,7 +72,7 @@ useHead({
</script> </script>
<style> <style>
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
.swagger-ui *:not(:is(pre, pre *, textarea, textarea *)) { .swagger-ui *:not(:is(pre, pre *, textarea, textarea *)) {
font-family: var(--font-family) !important; font-family: var(--font-family) !important;
@@ -82,6 +82,6 @@ useHead({
.swagger-ui pre *, .swagger-ui pre *,
.swagger-ui textarea, .swagger-ui textarea,
.swagger-ui textarea * { .swagger-ui textarea * {
font-family: "Roboto Mono", monospace !important; font-family: "IBM Plex Mono", monospace !important;
} }
</style> </style>