Skip to content

Commit 324c193

Browse files
committed
fix: patch up mobile view
1 parent 7d187a8 commit 324c193

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.vitepress/theme/components/Home/Tooling.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const tab = ref(tooling[0].title);
110110

111111
<div class="col-span-2">
112112
<div
113-
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
113+
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
114114
v-if="tab === 'Powerful DB Layer'">
115115
<h3 class="font-bold text-2xl !mt-0">Powerful DB Layer</h3>
116116
<div class="mt-4 leading-relaxed space-y-4">
@@ -147,7 +147,7 @@ const tab = ref(tooling[0].title);
147147
</div>
148148

149149
<div
150-
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
150+
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
151151
v-if="tab === 'Dead-simple Authentication'">
152152
<h3 class="font-bold text-2xl !mt-0">Authentication</h3>
153153
<div class="mt-4 leading-relaxed space-y-4">
@@ -180,7 +180,7 @@ const tab = ref(tooling[0].title);
180180
</div>
181181

182182
<div
183-
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
183+
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
184184
v-if="tab === 'Simplified Http API'">
185185
<h3 class="font-bold text-2xl !mt-0">Simplified HTTP</h3>
186186
<div class="mt-4 leading-relaxed space-y-4">
@@ -221,7 +221,7 @@ const tab = ref(tooling[0].title);
221221
</div>
222222

223223
<div
224-
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
224+
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
225225
v-if="tab === 'Useful App Utils'">
226226
<h3 class="font-bold text-2xl !mt-0">Useful App Utils</h3>
227227
<div class="mt-4 leading-relaxed space-y-4">
@@ -279,7 +279,7 @@ const tab = ref(tooling[0].title);
279279
</div>
280280

281281
<div
282-
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
282+
class="w-full bg-white dark:bg-[var(--vp-c-bg-alt)] rounded-2xl p-6 md:p-8 lg:p-14 overflow-y-auto max-h-[600px] h-full"
283283
v-if="tab === 'Dynamic View Layer'">
284284
<h3 class="font-bold text-2xl !mt-0">Dynamic View Layer</h3>
285285
<div class="mt-4 leading-relaxed space-y-4">

0 commit comments

Comments
 (0)