Skip to content

Commit 94b408d

Browse files
committed
fix: remove prose styles from custom styled pages
1 parent e8e5a1e commit 94b408d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/components/Readme.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function handleClick(event: MouseEvent) {
6161

6262
<template>
6363
<article
64-
class="readme prose prose-invert max-w-[70ch] lg:max-w-none px-1"
64+
class="readme max-w-[70ch] lg:max-w-none px-1"
6565
dir="auto"
6666
v-html="html"
6767
:style="{

app/pages/about.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const roleLabels = computed(
7272
</p>
7373
</header>
7474

75-
<section class="prose prose-invert max-w-none space-y-12">
75+
<section class="max-w-none space-y-12">
7676
<div>
7777
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
7878
{{ $t('about.what_we_are.title') }}

app/pages/accessibility.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const canGoBack = useCanGoBack()
3737
</div>
3838
</header>
3939

40-
<section class="prose prose-invert max-w-none space-y-8">
40+
<section class="max-w-none space-y-8">
4141
<p class="text-fg-muted leading-relaxed">
4242
<i18n-t keypath="a11y.welcome" tag="span" scope="global">
4343
<template #app>

app/pages/privacy.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const { locale } = useI18n()
5454
</i18n-t>
5555
</header>
5656

57-
<section class="prose prose-invert max-w-none space-y-8">
57+
<section class="max-w-none space-y-8">
5858
<p class="text-fg-muted leading-relaxed">
5959
<i18n-t keypath="privacy_policy.welcome" tag="span" scope="global">
6060
<template #app>

app/pages/recharging.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const icons = [
106106
/>
107107
</div>
108108

109-
<section class="prose prose-invert max-w-none space-y-8">
109+
<section class="max-w-none space-y-8">
110110
<!-- What happened -->
111111
<div>
112112
<h2 class="text-lg text-fg-subtle uppercase tracking-wider mb-4">

0 commit comments

Comments
 (0)