Skip to content

Commit 1d69ef9

Browse files
committed
fix: update relative path for global stylesheet reference in legal pages
1 parent ee00ddb commit 1d69ef9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/pages/en/cookies.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ const lang = LOCALES.en;
190190
</Layout>
191191

192192
<style>
193-
@reference "../styles/global.css";
193+
@reference "../../styles/global.css";
194194
.prose h2 {
195195
@apply mb-6 mt-12 text-2xl font-bold text-slate-900 first:mt-0 dark:text-white;
196196
}

src/pages/en/privacy.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const lang = LOCALES.en;
275275
</Layout>
276276

277277
<style>
278-
@reference "../styles/global.css";
278+
@reference "../../styles/global.css";
279279
.prose h2 {
280280
@apply mb-6 mt-12 text-2xl font-bold text-slate-900 first:mt-0 dark:text-white;
281281
}

src/pages/en/terms.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ const lang = LOCALES.en;
243243
</Layout>
244244

245245
<style>
246-
@reference "../styles/global.css";
246+
@reference "../../styles/global.css";
247247
.prose h2 {
248248
@apply mb-6 mt-12 text-2xl font-bold text-slate-900 first:mt-0 dark:text-white;
249249
}

0 commit comments

Comments
 (0)