Add Table Styles
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -17,5 +17,5 @@ import {t} from "astro-i18n";
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<Dashboard client:only="svelte"/>
|
||||
<Dashboard client:only="svelte" />
|
||||
</PageLayout>
|
||||
Reference in New Issue
Block a user