Skip to content

Commit

Permalink
fix dark mode full h
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfredinni committed Jun 21, 2022
1 parent f5a4407 commit 3edf3fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
@@ -1,6 +1,6 @@
<script setup lang="ts">
useHead({
title: 'Python Cheat Sheet',
title: 'Python Cheatsheet',
meta: [
{
name: 'description',
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/default.vue
@@ -1,7 +1,7 @@
<script setup lang="ts"></script>

<template>
<main class="px-4 py-10 text-center text-gray-700 dark:bg-gray-800 h-screen">
<main class="px-4 py-10 text-center text-gray-700 dark:bg-gray-800 h-full">
<div class="flex items-center justify-center space-x-3">
<base-theme-local />

Expand Down
11 changes: 4 additions & 7 deletions src/pages/index.vue
@@ -1,10 +1,7 @@
<script setup lang="ts">
useHead({
title: 'Home',
meta: [{ name: 'description', content: 'Opinionated Vite Starter Template' }],
})
</script>
<script setup lang="ts"></script>

<template>
<div></div>
<div>
<c-01-basics />
</div>
</template>

0 comments on commit 3edf3fb

Please sign in to comment.