Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d9761b9

Browse filesBrowse files
committed
feature(video) improve tutorial layout
1 parent 7261081 commit d9761b9
Copy full SHA for d9761b9

File tree

Expand file treeCollapse file tree

4 files changed

+853
-811
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+853
-811
lines changed

‎package.json

Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@types/bcrypt": "^5.0.0",
1818
"@types/uuid": "^8.3.4",
1919
"autoprefixer": "^10.4.8",
20-
"nuxt": "3.0.0-rc.11",
20+
"nuxt": "^3.0.0-rc.12",
2121
"postcss": "^8.4.16",
2222
"tailwindcss": "^3.1.8"
2323
},

‎pages/topics/[name].vue

Copy file name to clipboardExpand all lines: pages/topics/[name].vue
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import {Series, Video} from ".prisma/client";
33
import getParam from "~/composables/getParam";
44
5-
6-
75
const route = useRoute()
86
const videoElements = ref([])
97

‎pages/tutorials/overview.vue

Copy file name to clipboardExpand all lines: pages/tutorials/overview.vue
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ definePageMeta({
88
</script>
99

1010
<template>
11-
<main class="dark:bg-slate-800">
11+
<main class="flex justify-center w-100 my-10">
1212

1313

1414
<ContentList path="/tutorials" v-slot="{ list }">
1515

1616
{{list.article}}
17-
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 lg:my-20 lg:ml-20 dark:bg-slate-800 dark:bg-text-white">
17+
<div class="flex flex-col justify-center w-100">
1818
<div v-for="article in list" :key="article._path" class="max-w-xl rounded overflow-hidden shadow-xl shadow-green-400 mb-10 p-10 dark:bg-text-white">
1919
<NuxtLink :to="article._path">
2020
<img class="w-full" src="/img/nuxt3.svg" alt="nuxt 3 logo">
21-
<div class="px-6 py-4">
21+
<div class=" py-4">
2222
<div class="font-bold text-xl mb-2 dark:text-white">{{ article.title }}</div>
2323
<p class="text-gray-700 dark:text-white text-base">
2424
{{ article.description }}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.