Add Table Styles

This commit is contained in:
2024-03-01 21:45:50 +01:00
parent 77bf19a1c8
commit 474187899f
7 changed files with 44 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ import {getCollection} from "astro:content";
import {astroI18n, createGetStaticPaths} from "astro-i18n";
import PageLayout from "../layouts/PageLayout.astro";
import LanguageWarning from "../components/LanguageWarning.astro";
import "@styles/table.css";
export const getStaticPaths = createGetStaticPaths(async () => {
let posts = await getCollection("pages", value => value.id.split("/")[0] === astroI18n.locale);

View File

@@ -8,6 +8,7 @@ import LanguageWarning from "@components/LanguageWarning.astro";
import {SEO} from "astro-seo";
import localBau from "@images/2022-03-28_13.18.25.png";
import {getImage, Image} from "astro:assets";
import "@styles/table.css";
export const getStaticPaths = createGetStaticPaths(async () => {
const posts = await getCollection("announcements", entry => entry.id.split("/")[0] === astroI18n.locale);
@@ -165,10 +166,6 @@ const ogImage = await getImage({
display: contents;
}
> * {
all: revert;
}
code {
@apply dark:text-neutral-400 text-neutral-800;
}

View File

@@ -17,5 +17,5 @@ import {t} from "astro-i18n";
}
});
</script>
<Dashboard client:only="svelte"/>
<Dashboard client:only="svelte" />
</PageLayout>